CF435E.Special Graph

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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

The figure below shows a 3×53×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×53×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.

You are given the size of the grid graph n×mn×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.

输入格式

The first line contains two integers nn and mm (2<=n,m<=1000)(2<=n,m<=1000) . Each of the next nn lines consists of mm 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 11 to 44 .

输出格式

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

If multiple answers exist, print any of them.

输入输出样例

  • 输入#1

    3 5
    10101
    00020
    01000
    

    输出#1

    13131
    42424
    31313
    
  • 输入#2

    2 2
    00
    00
    

    输出#2

    12
    34
    
  • 输入#3

    2 2
    11
    00
    

    输出#3

    0
    

说明/提示

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.

首页