#Lutece0688. Just a Game
Just a Game
Migrated from Lutece 688 Just a 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
Warning: This problem might be VERY LONG. But it is actually not a very hard problem. Be patient, we have tried our best to make it apprehensible.
Game Description
In this problem we just describe a game which kennethsnow has recently played. The game is played on a rectangular board with length and width no more than . The board is given to you by strings, each with length , describing a board.
Board Description
There are FOUR kinds of squares on the board:
Green Bricks
. They are shown in the string as1
.Red Bricks
. They are shown in the string as2
.Empty Square
. They are shown in the string as a dot.
.Magic Bricks
. They are shown in the string as?
.
An example of Magic Bricks, showed in white
There will be no more than 15 Bricks on the board.
Features Description
Besides those four kinds of squares, some positions have special features. They will be given in the input independently. Please note that the features belong to positions only, not the squares or bricks at that position. There are two features:
Destination
. There will be no more than one position with that feature.
An example of Destination: (Showed as a STAR)Reverse
. There will be no more than two positions with that feature.
Their detail abilities will be talked later.
To play the game
The game is processed by moves.
A single move is legal when some conditions are satisfied.
- You choose an empty square, and count the number of bricks neighboring that square. (Four directions:
Up
,Down
,Left
,Right
, if there are any) - When there are no magic bricks:
Count the number of Green Bricks and the number of Red Bricks. If both of them are less than two, then this move is illegal. If their numbers are equal, it is also illegal. Otherwise, we have a color of which the bricks share a larger number. We call that color aDominating Color
. - When there are magic bricks:
Count as step . When there are no Green Bricks and Red Bricks, the move is illegal. Otherwise, if there are equal or more Green Bricks than Red Bricks, turn the color of magic bricks into Green. Otherwise turn the color of magic bricks into Red. Then decide
Dominating Color
as step .
If we choose the empty square as pointed, the Magic Bricks will turn Red. The first image above is the initial state of this image.
If we choose the empty square as pointed, the Magic Bricks will turn Green. The first image above is the initial state of this image. - If all the steps above are legal, clear the neighboring Bricks with the
Dominating Color
. Hereclear
means turn those positions intoEmpty Squares
. - After clearing, turn the Empty Square you choose into Green or Red Brick. There might be two conditions: If the position you choose has the feature
Reverse
, the color of the Brick will be the one different fromDominating Color
, otherwise the color will be theDominating Color
.
To win the game
As you can see, after each move, the number of Bricks on the board will decrease. (If you don’t understand this, please read the description again or ask on BBS for a clarification!). So if you play well, there will be a time when there is only one Brick on the board. If you have no legal moves before you reach this state, you’ve already lost.
- If you reach this state, and there are no positions with feature
Destination
, you win. - If you reach this state, and there is a position with feature
Destination
, and your last Brick is at that position, you win. - Otherwise, you lose.
Problem Description
Thanks a lot for reading this problem! It took me an hour to write it…
You are given the initial board, and all the positions with some features. Determine the minimum step to win the game, it is guaranteed all the game in the test cases will have a solution.
Input
The first line of the input contains a single number , indicating the number of test cases. ()
For each test case, first line has two integers and , describing the size of the board. (). Then given the board in detail, with lines, each has a length- string.
Then two numbers and are given. Which is the position with feature Destination
as (). If there are no such position, both of them will be .
Then a single integer (), which is the number of Reverse
positions. Then lines each with two numbers and , describing the position ().
There is a blank line before each test case.
Output
For each test case, output Case #x:
first, where is the case number. Then output the minimum step to win the game.
Samples
1
5 5
..1..
.1.1.
.....
..2..
.....
-1 -1
1
1 2
Case #1: 2
Note
The Sample Input can be solved in this way:
Initial Board
Step 1
Step 2
Resources
11th UESTC Programming Contest Preliminary