#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 n×mn\times m matrix, please find the shortest path to reach (n,m)(n,m) from (1,1)(1,1)

Input

The first line of the input is an integer TT (T100T\leq 100), which stands for the number of test cases you need to solve.

Each test case begins with two integers nn, mm (1n,m2501\leq n, m\leq 250) in the first line indicating the size of the board. Then n lines follow, each line contains m numbers either 00 or 11 which are:

  • 00 : represents a grid on which you can step.
  • 11 : represents a wall.

Output

For every test case, you should output Case #k: first, where k indicates the case number and starts at 11. 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