#Lutece0407. Jumping Hero

Jumping Hero

Migrated from Lutece 407 Jumping Hero

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Background

A software house has decided to create a computer game, where the hero must find its way from a start position to the end position, through a labyrinth. In the labyrinth, some cells contain magic fountains that can be used to get super-powers an infinite number of times. Whenever the hero enters a cell with a magic fountain, he gets super-powers.

Usually, our hero moves in the labyrinth one cell left/right/up/down at a time (to an empty cell). With super-powers, the hero jumps to an empty cell NN positions to the left/right/up/down. The super-power lasts for MM jumps, and the hero can change its jumping direction after each jump. A jump is allowed if the end cell of the jump is within the map and it is not a wall – thus, the hero can jump over walls. If the hero jumps to a cell with a new magic fountain, the hero gets the super-powers of the new magic fountain, and the remaining effect of the previous magic fountain is cancelled. If the hero jumps to the cell where he obtained its current super-powers, no effect occurs (i.e., the hero gets no additional super-powers). When the current super-power ends, the hero proceeds its normal one-cell movement. If, after getting super-powers in some fountain, the hero cannot move to any cell, he looses his super-powers and returns to his previous cell. To reach the end position, the hero must move to the end cell or finish one jump in the end cell.

Description

Given the labyrinth map compute the minimum number of moves/jumps from the start position to the end position.

Input

Input consists of multiple test cases the first line of the input contains the number of test cases. There is a blank line before each dataset. The first line of each dataset contains two positive integers, LL and CC, separated by a empty space, with LL the number of lines and CC the number of columns in the map. LL and CC are both lesser than 300300. The following LL lines of the input contain CC integers each that define the cells of the map (separated by a empty space). Each integer, ii, must be interpreted as follows: i=0i = 0 represents a wall; i=1i = 1 represents an empty cell (where the hero can move into); i=M×10+Ni = M\times 10+N represents an empty cell with a magic fountain that makes the hero jump MM times to the cell that is NN positions to the left/right/up/down of the current cell. MM ranges from 11 to 55 and NN ranges from 22 to 66. The maximum number of magic fountains in a map is 5,0005,000. The two last lines of the input define the coordinates of the start position and end position (coordinates consist of two integers, denoting the line and column respectively, starting from 00).

Output

The output consists of one single line that contains an integer with the minimum number of moves/jumps, from the start position to the end position. If it is impossible to reach the end position, the output should be a single line containing IMPOSSIBLE. Print a blank line between datasets.

Samples

1

8 8 
0 1 1 1 1 1 1 1 
0 1 0 0 1 13 1 1 
0 1 32 1 1 1 0 0 
0 1 1 0 1 1 1 0 
0 1 1 0 0 0 0 0 
0 1 1 1 1 1 1 0 
0 1 0 0 1 1 1 0 
0 1 1 1 1 1 1 0 
1 7 
5 4
14

Resources

Southwestern 2007-2008