1 人解决,3 人已尝试。
1 份提交通过,共有 8 份提交。
9.9 EMB 奖励。
单点时限: 2.0 sec
内存限制: 256 MB
Your goal is to write a solver for Nurikabe, a binary determination puzzle. The puzzle is played on a grid, typically rectangular (with no standard size) containing empty and numbered cells. You must decide for each cell if it is white (land) or black (water), so that it satisfies the following constraints. An Island is a maximal connected region of white cells.
Note that diagonal adjacency doesn’t count as connectedness. You can assume there is always a unique solution for each puzzle.
There are multiple test cases in the input. The first line of each test case contains two numbers n, m (3 ≤ n,m ≤ 9) which are the dimensions of the puzzle, followed by n lines each one has m characters including ‘.’ (indicating an empty cell) and 1-digit numbers. The last line of the input contains two zero numbers.
The output for each test case should show the solved puzzle. Show black (water) cells with ‘#’. Write an empty line in the output after each puzzle.
3 4 3... .... .4.. 5 5 2.5.. ..... ..... ..... ..4.3 0 0
3..# #### .4.. 2#5.. .#.## ##.#. .###. ..4#3
1 人解决,3 人已尝试。
1 份提交通过,共有 8 份提交。
9.9 EMB 奖励。