Problem E
Light Up
Light Up is a pencil puzzle. Your job will not be to play Light Up, but simply to judge whether a player’s solution is correct.
The game is played on a square grid. Some of the cells are blocked, and some of the blocked cells have a number from $0$ to $4$. The player must place light bulbs in open cells. Each light bulb can light all of the open cells above, below, left, and right (but not diagonally) until the light reaches the edge of the grid or a blocked cell. The player must place light bulbs so that:
-
Every open cell is lit.
-
No two light bulbs can shine on each other.
-
Any blocked cell with a number in it must have exactly that number of light bulbs immediately adjacent above, below, left, or right. Diagonals do not count.
The following is an example grid with its solution:
Given a grid with light bulbs placed, determine whether it is, in fact, a solution. Note that if a grid has no open cells, and does not violate any other constraints, it is trivially solved.
Input
The first line of input contains a single integer $n$ ($1 \le n \le 30$), which is the number of rows and columns in the grid.
Each of the next $n$ lines contains exactly $n$ characters from the set {‘.’,‘X’,‘?’,‘0’,‘1’,‘2’,‘3’,‘4’}. This is the grid, with ‘.’ representing an open cell, ‘X’ representing a blocked cell, ‘?’ representing a light bulb, and the numbers ‘0’,‘1’,‘2’,‘3’,‘4’ representing a blocked cell with a constraint on the number of adjacent light bulbs.
Output
Output a single integer, which is $1$ if the input is a valid solution, and $0$ otherwise.
Sample Input 1 | Sample Output 1 |
---|---|
7 .?.0..? ..X.1?. .X.?.2. .....?. ?3?..2. .?3.X?. ..?X?.. |
1 |
Sample Input 2 | Sample Output 2 |
---|---|
7 .?.0..? ..X.1?. .X...2. .....?. ?3?..2. .?3.X?. ..?X?.. |
0 |