#Lutece0404. Maze
Maze
Migrated from Lutece 404 Maze
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.
Description
You are given a special Maze described as an matrix, please find the shortest path to reach from
Input
The first line of the input is an integer (), which stands for the number of test cases you need to solve.
Each test case begins with two integers , () in the first line indicating the size of the board. Then n lines follow, each line contains m numbers either or which are:
- : represents a grid on which you can step.
- : represents a wall.
Output
For every test case, you should output Case #k:
first, where k indicates the case number and starts at . If it’s impossible to reach the end position, just output -1
. Otherwise, output the minimum number of steps to solve this problem.
Samples
1
5 5
0 1 0 0 0
0 1 0 1 0
0 0 0 0 0
0 1 1 1 0
0 0 0 1 0
Case #1: 8
Resources
Classic Problem