Problem A
Killing Aliens in a Borg Maze
The Borg is an immensely powerful race of enhanced humanoids from the delta quadrant of the galaxy. The Borg collective is the term used to describe the group consciousness of the Borg civilization. Each Borg individual is linked to the collective by a sophisticated subspace network that ensures each member is given constant supervision and guidance.
Your task is to help the Borg (yes, really) by developing a
program which helps the Borg to estimate the minimal cost of
scanning a maze for the assimilation of aliens hiding in the
maze, by moving in north, west, east, and south steps. The
tricky thing is that the beginning of the search is conducted
by a large group of over
Input
On the first line of input there is one integer,
Each test case starts with a line containing two integers
Output
For every test case, output one line containing the minimal cost of a successful search of the maze leaving no aliens alive.
Sample Input 1 | Sample Output 1 |
---|---|
2 6 5 ##### #A#A## # # A# #S ## ##### 7 7 ##### #AAA### # A# # S ### # # #AAA### ##### |
8 11 |