Problem C
Grid

You are on an
Input
Each input will consist of a single test case. Note that
your program may be run multiple times on different inputs. The
first line of input contains two space-separated integers
The next
The top-left corner of the grid will be the square corresponding to the first character in the first line of the test case. The bottom-right corner of the grid will be the square corresponding to the last character in the last line of the test case.
Output
Output a single integer on a line by itself representing the minimum number of moves required to get from the top-left corner of the grid to the bottom-right. If it isn’t possible, output -1.
Sample Input 1 | Sample Output 1 |
---|---|
2 2 11 11 |
2 |
Sample Input 2 | Sample Output 2 |
---|---|
2 2 22 22 |
-1 |
Sample Input 3 | Sample Output 3 |
---|---|
5 4 2120 1203 3113 1120 1110 |
6 |