Two gold mines
87% Success1911 Attempts30 Points1s Time Limit256MB Memory1024 KB Max Code

You have given a $$n×n$$ matrix containing empty spaces or walls. You have a team of $$2$$ players where the position of each player is given. There are $$2$$ gold mines on the map. Your aim is to pick gold from both these mines.

You are required to find the minimum time required to pick gold from both gold mines.
In one second, they all simultaneously can move in any of the four directions and any player can pick any number of gold including 0.

Input format

  • The first line contains $$t$$ denoting the total number of test cases.
  • The first line of each test case contains an integer $$n$$ denoting the number of rows and columns in the matrix.
  • The next $$n$$ lines of each test case contain $$n$$ characters denoting the rows of the matrix.
    • $$.$$ denotes an empty cell
    • $$#$$ denotes a wall
    • $$^$$ denotes a player
    • $$*$$ denotes a gold mine

Output format

The output contains the following two lines:

  • The first line contains "Yes" (without quotes) if it is possible to collect both the mines or "No" (without quotes) if you are unable to pick both the mines.
  • The second line contains the minimum time required to pick both the gold mines.

In the case of "No", do not print the second line.

Constraints

$$1 \le t \le 100$$

$$2 \le n \le 100$$

Examples
Input
3
4
*..*
..#.
.^#^
...#
4
...*
.#.*
##.^
.#.^
4
...*
*..#
#.#^
^#..
Output
Yes
3
Yes
2
No
Explanation

In the first test case, player 1 will move from (3,2)->(1,1) and the second player will move from (3,4)->(1,4).

In the second test case, player 1 will move from (3,4)->(2,4)->(1,4) and the second player don't move.

Please login to use the editor

You need to be logged in to access the code editor

Loading...

Please wait while we load the editor

Loading Editor...
Results