#Lutece0867. Battleships

Battleships

Migrated from Lutece 867 Battleships

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 are all probably familiar with the pen and paper version of Battleships, but humor us while we describe it: Each puzzle consists of a 1010-by-1010 grid of squares in which 1010 different ships have been secretly placed. One of these ships is 44 grid squares long, two of them are 33 grid squares long, three of them are 22 grid squares long, and the remaining four ships are each 11 grid square in length. No two ships can overlap and none can be adjacent to another, even diagonally. The only clues you have to the ship locations are a set of row and column sums printed on the left and bottom of the grid. Each row/column sum specifies how many grid squares in that row/column are occupied by ships. The figures below show an example of a Battleships puzzle and its solution.

Figure 11

When designing a Battleships puzzle, you must make sure that there is a unique solution for the given row and column sums. Sometimes the sums on the sides are all that are needed to ensure a unique solution (like the example above), but sometimes you must specify one or more squares in the grid in order to rule out all but one solution (as in the example below).

Figure 22

These specified squares can be one of seven types: water, interior of a ship, left end of a horizontal ship, top end of a vertical ship, right end of a horizontal ship, bottom end of a vertical ship, and 11-square ship. These are shown at the top of the next page. The characters beneath each square will be used for your output. Note that the last character is an upper-case letter O, not a zero; also note that the X is upper-case but the w and v are lower-case.

Figure 33

Your job is the following: given a set of row and column sums, you are to find the minimum number of specified squares needed to ensure that there is a unique solution. If this number is greater than 22, you are to reject the puzzle as being too ambiguous.

Input

The input file will start with an integer nn indicating the number of test cases. Each test case consists of two lines, the first containing the ten row sums and the second containing the ten column sums.

Output

For each test case, output the case number followed by the total number of solutions possible for the given row and column sums (this number will never exceed 12,00012,000) followed by the minimum number of specified squares needed to force a unique solution. If this number is greater than 22, display the phrase

too ambiguous

Otherwise, output the location of the best square(s) that can be used to force a unique solution followed by the type of square to use, using the characters shown in Figure 33. In the case of a single square, the best square is the square with the lowest row number, breaking any ties by choosing the one with the lowest column number. After this, if there is a choice between the type of square to use, use the lexicographically first one, where the lexicographic ordering is shown in Figure 33, with water being the lexicographically first square type, followed by interior of ship, etc. In the case of two squares, output the pair whose first square is the best among all first squares, breaking ties by choosing the one with the best second square. All row and column numbers start at 11.

Samples

4
8 1 0 7 0 0 4 0 0 0
3 3 1 2 0 3 2 3 0 3
0 3 3 4 1 2 1 2 2 2
1 4 0 0 6 0 2 3 2 2
1 2 1 2 5 0 1 2 1 5
2 0 0 1 1 2 3 3 2 6
0 4 1 0 4 0 4 4 0 3
3 1 0 2 3 3 3 0 2 3
Case 1: 1 0
Case 2: 993 2 (2,1)=< (6,7)=w
Case 3: 8 1 (2,5)=O
Case 4: 30 too ambiguous

Resources

2013 East Central Regional Contest