QUEEN - Wandering Queen


There is a checkmates board with n rows and m columns. Some of the cells of the board are occupied. There is a queen standing on a certain cell. It wants to move to another cell of this board. Help it do this making the least possible moves. The queen can go any number of cells in any of eight directions in a single move, but it can't pass through or stand on the occupied cells and leave the board.

Input

The first line of the input contains number t – the amount of tests. Then t test descriptions follow. The first line of each test consists of two numbers n and m separated with a space. Then n lines follow each containing m characters describing the board. Character ‘.’ means a free cell, character ‘X’ – an occupied cell, character ‘S’ – the starting cell of the queen, character ‘F’ – the cell where the queen wants to go. It is guaranteed that there will be exactly one character ‘S’ and one character ‘F’ on each board.

Constraints

1 <= t <= 30
2 <= n, m <= 1000

Output

For each test case print the minimum number of moves the queen has to do to reach the desired cell. Print ‘-1’ if the queen can’t reach the cell.

Example

Input:
3
3 3
S..
...
..F
3 3
S..
XX.
F..
3 3
S..
XXX
..F

Output:
1
3
-1

hide comments
amaroq: 2009-04-18 07:19:30

But still the time limit is pretty tight. Make sure you clean up your inner loop(s).

[Trichromatic] XilinX: 2009-04-18 07:02:39

BFS with some (obviously) pruning :-)

JaceTheMindSculptor: 2009-04-17 19:09:02

If BFS won't run in time, what will?


Added by:Spooky
Date:2009-04-16
Time limit:0.703s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ERL JS-RHINO NODEJS PERL6 VB.NET
Resource:Advancement Spring 2009, http://sevolymp.uuuq.com/