Codeforces Round #249 (Div. 2)E(构造)

E. Special Graph
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

In this problem you will need to deal with an n × m grid graph. The graph's vertices are the nodes of the n × m grid. The graph's edges are all the sides and diagonals of the grid's unit squares.

The figure below shows a 3 × 5 graph. The black lines are the graph's edges, the colored circles are the graph's vertices. The vertices of the graph are painted on the picture for a reason: the coloring is a correct vertex coloring of the 3 × 5 graph into four colors. A graph coloring is correct if and only if each vertex is painted and no two vertices connected by an edge are painted the same color.

Codeforces Round #249 (Div. 2)E(构造)_第1张图片

You are given the size of the grid graph n × m and the colors of some of its vertices. Find any way how to paint the unpainted vertices of the graph in 4 colors to make the final coloring a correct vertex graph coloring. If there is no such correct vertex coloring, say that the answer doesn't exist.

Input

The first line contains two integers n and m (2 ≤ n, m ≤ 1000). Each of the next n lines consists of m characters — the given graph. Each character is either «0», «1», «2», «3», «4». Character «0» means that the corresponding vertex is unpainted, otherwise the character means the color of the vertex.

Assume that all the available colors are numbered from 1 to 4.

Output

If there is no way to get correct vertex coloring of the graph, print 0 in a single line. Otherwise print the colored n × m graph. Print the graph in the same format as in the input.

If multiple answers exist, print any of them.

Sample test(s)
input
3 5
10101
00020
01000
output
13131
42424
31313
input
2 2
00
00
output
12
34
input
2 2
11
00
output
0
Note

The answer to the first sample is shown on the picture (1 — green color, 2 — blue, 3 — dark blue, 4 — pink).

In the second sample there exists 4! answers, each of them is considered correct.

In the third sample two vertices with equal colors are connected. So the correct vertex coloring couldn't be obtained.

题解:构造题

考虑这样一种构造:12121

34343

21212

43434

不难发现每行都只有两种数,且交叉出现,且相邻两行之间的数不同

也可以这样对每列构造,做法已显然,对行或对列枚举这四个数字的位置即可

你可能感兴趣的:(构造,ACM,codeforces)