CF297D.Color the Carpet

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Even polar bears feel cold when lying on the ice. Therefore, a polar bear Alice is going to make a carpet. The carpet can be viewed as a grid with height hh and width ww . Then the grid is divided into h×wh×w squares. Alice is going to assign one of kk different colors to each square. The colors are numbered from 1 to kk . She may choose not to use all of the colors.

However, there are some restrictions. For every two adjacent squares (squares that shares an edge) xx and yy , there is a color constraint in one of the forms:

  • color(x)=color(y)color(x)=color(y) , or
  • color(x)color(y)color(x)≠color(y) .

Example of the color constraints:

Ideally, Alice wants to satisfy all color constraints. But again, life in the Arctic is hard. It is not always possible to satisfy all color constraints. Fortunately, she will still be happy if at least of the color constraints are satisfied.

If she has 44 colors she can color the carpet in the following way:

And she is happy because of the color constraints are satisfied, and . Your task is to help her color the carpet.

输入格式

The first line contains three integers h,w,kh,w,k (2<=h,w<=1000,1<=k<=wh)(2<=h,w<=1000,1<=k<=w·h) .

The next 2h12h-1 lines describe the color constraints from top to bottom, left to right. They contain w1,w,w1,w,...,w1w-1,w,w-1,w,...,w-1 characters respectively. Each color constraint is represented by a character "E" or "N", where "E" means " == " and "N" means " ".

The color constraints listed in the order they are depicted on the picture.

输出格式

If there is a coloring that satisfies at least of the color constraints, print "YES" (without quotes) in the first line. In each of the next hh lines, print ww integers describing the coloring.

Otherwise, print "NO" (without quotes).

输入输出样例

  • 输入#1

    3 4 4
    ENE
    NNEE
    NEE
    ENEN
    ENN
    

    输出#1

    YES
    1 1 2 2
    3 4 1 1
    3 3 2 4
首页