시간 제한메모리 제한제출정답맞힌 사람정답 비율
3 초 512 MB0000.000%

문제

Robin is using a basic paint tool. This paint tool is so basic that it performs only a single operation. One selects four corner pixels on the screen. If these four pixels form an axis-aligned rectangle, then the tool will change the colour of the pixels on the border of that rectangle to black. If any of these pixels are already black, the program will crash.

Robin has a black and white image. They wish to draw more rectangles on this image. What is the maximum number of rectangles they can draw with this tool without the program crashing?

입력

The first line contains two integers r (1 ≤ r ≤ 100) and c (1 ≤ c ≤ 8), which are the number of rows (in pixels) and columns (in pixels) in Robin’s image.

Following this is an r × c grid of characters. If a pixel is black, its corresponding character is an asterisk (*). If a pixel is white, its corresponding character is a dot (.).

출력

First, display n, which is the maximum number of rectangles that can be drawn onto the image.

Then display the image after drawing n rectangles (indexed 1 to n) on it using the basic paint tool. Each pixel should be represented by exactly one integer. If the original pixel was black, display −1. If the original pixel was white and it was not changed by the basic paint tool, display 0. Otherwise, display the index of the rectangle that was drawn onto that pixel.

If there are multiple possible solutions, any one will be accepted.

예제 입력 1

3 3
...
...
...

예제 출력 1

1
1 1 1
1 1 1
0 0 0

예제 입력 2

3 5
.....
...*.
**...

예제 출력 2

2
1 1 2 2 2
1 1 2 -1 2
-1 -1 2 2 2

예제 입력 3

4 4
....
....
....
....

예제 출력 3

4
1 1 2 2
1 1 2 2
3 3 4 4
3 3 4 4