#Lutece0871. Stampede!
Stampede!
Migrated from Lutece 871 Stampede!
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 have an game board. Some squares contain obstacles, except the left- and right-most columns
which are obstacle-free. The left-most column is filled with your pieces, per row. Your goal is to
move all your pieces to the right-most column as quickly as possible. In a given turn, you can move
each piece N
, S
, E
, or W
one space, or leave that piece in place. A piece cannot move onto a square
containing an obstacle, nor may two pieces move to the same square on the same turn. All pieces move
simultaneously, so one may move to a location currently occupied by another piece so long as that piece
itself moves elsewhere at the same time.
Given and the obstacles, determine the fewest number of turns needed to get all your pieces to the right-hand side of the board.
Input
Each test case starts with a positive integer indicating the size of the game board, with .
Following this will be lines containing characters each. If the character in the line is an X
,
then there is an obstacle in board location ; otherwise this character will be a .
indicating no
obstacle. There will never be an obstacle in the or column and there will always be at least
one obstacle-free path between these two columns. A line containing a single will terminate input.
Output
For each test case output the minimum number of turns to move all the pieces from the left side of the board to the right side.
Samples
5
.....
.X...
...X.
..X..
.....
5
.X...
.X...
.X...
.XXX.
.....
0
Case 1: 6
Case 2: 8
Resources
2013 East Central Regional Contest