#Lutece0460. Maze Game

Maze Game

Migrated from Lutece 460 Maze Game

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

Elfness is interested in playing a maze game, the aim of the game is to reach destination point from a start point on a grid map with two kinds of grid: . means you can freely get to this grid, # means you can’t get to this grid, to make it harder, elfness think there must be exactly one path between any two connected point, or it becaome easy and lose fun,.Moving from one grid to an adjacent grid costs one unit time. As a good gamer, elfness always chooses a way that cost least time. Now, elfness is facing a different maze without destination and start point, so he must determine a start point and an end point by himself, and to challenge himself, he wants to choose two points that can reach each other with their shortest distance as long as possible, but the question is if he calculates the distance by himself, he will know the path, and he has no interests in playing this maze anymore. So he need you to help him calculate the maximum distance.

Notice:if the two points we choose as start point and destination is same point, then the distance is 00.

Input

In the first line of input there is an integer TT, meaning there is TT test cases.

For each test case, the first line contains two integers mm and nn (2n,m10002\leq n,m\leq 1000), which means the maze has mm columns and nn rows. Then nn lines follows, each line contains exactly m characters, describing the maze.

Output

For each test case, first output Case #C: , where CC is the number of test case, from 11 to TT. Then for each test case output the maximum distance in a single line.

Samples

2
3 2
...
.#.
3 3
.#.
.#.
.#.
Case #1:
4
Case #2:
2

Resources

elfness