#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 66. The board is given to you by nn strings, each with length mm, describing a n×mn\times m board.

Board Description

There are FOUR kinds of squares on the board:

  1. Green Bricks. They are shown in the string as 1.
  2. Red Bricks. They are shown in the string as 2.
  3. Empty Square. They are shown in the string as a dot ..
  4. Magic Bricks. They are shown in the string as ?.

title

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:

  1. Destination. There will be no more than one position with that feature.
    title
    An example of Destination: (Showed as a STAR)
  2. 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.

  1. You choose an empty square, and count the number of bricks neighboring that square. (Four directions: Up, Down, Left, Right, if there are any)
  2. 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 a Dominating Color.
  3. When there are magic bricks:
    Count as step 2.12.1. 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 2.12.1.
    title
    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.
    title
    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.
  4. If all the steps above are legal, clear the neighboring Bricks with the Dominating Color. Here clear means turn those positions into Empty Squares.
  5. 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 from Dominating Color, otherwise the color will be the Dominating 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 TT, indicating the number of test cases. (T30T\leq 30)

For each test case, first line has two integers nn and mm, describing the size of the board. (4n,m64\leq n, m\leq 6). Then given the board in detail, with nn lines, each has a length-mm string.

Then two numbers xx and yy are given. Which is the position with feature Destination as (x,y)(x, y) (0x<n,0y<m0\leq x < n, 0\leq y < m). If there are no such position, both of them will be 1-1.

Then a single integer pp (p2p\leq 2), which is the number of Reverse positions. Then pp lines each with two numbers xx and yy, describing the position (x,y)(x, y) (0x<n,0y<m0\leq x < n, 0\leq y < m).

There is a blank line before each test case.

Output

For each test case, output Case #x: first, where xx 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

title

Step 1

title

Step 2

title

Resources

11th UESTC Programming Contest Preliminary