CF44J.Triminoes

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

There are many interesting tasks on domino tilings. For example, an interesting fact is known. Let us take a standard chessboard ( 8×88×8 ) and cut exactly two squares out of it. It turns out that the resulting board can always be tiled using dominoes 1×21×2 , if the two cut out squares are of the same color, otherwise it is impossible.

Petya grew bored with dominoes, that's why he took a chessboard (not necessarily 8×88×8 ), cut some squares out of it and tries to tile it using triminoes. Triminoes are reactangles 1×31×3 (or 3×13×1 , because triminoes can be rotated freely), also the two extreme squares of a trimino are necessarily white and the square in the middle is black. The triminoes are allowed to put on the chessboard so that their squares matched the colors of the uncut squares of the chessboard, and also the colors must match: the black squares must be matched with the black ones only and the white ones — with the white squares. The triminoes must not protrude above the chessboard or overlap each other. All the uncut squares of the board must be covered with triminoes.

Help Petya find out if it is possible to tile his board using triminos in the described way and print one of the variants of tiling.

输入格式

The first line contains two integers nn and mm ( 1<=n,m<=10001<=n,m<=1000 ) — the board size. Next nn lines contain mm symbols each and represent the board description. If some position contains ".", then the square in this position has been cut out. Symbol "w" stands for a white square, "b" stands for a black square. It is guaranteed that through adding the cut squares can result in a correct chessboard (i.e. with alternating black and white squares), thought, perhaps, of a non-standard size.

输出格式

If at least one correct tiling exists, in the first line print "YES" (without quotes), and then — the tiling description. The description must contain nn lines, mm symbols in each. The cut out squares, as well as in the input data, are marked by ".". To denote triminoes symbols "a", "b", "c", "d" can be used, and all the three squares of each trimino must be denoted by the same symbol. If two triminoes share a side, than they must be denoted by different symbols. Two triminoes not sharing a common side can be denoted by one and the same symbol (c.f. sample).

If there are multiple correct ways of tiling, it is allowed to print any. If it is impossible to tile the board using triminoes or the correct tiling, for which four symbols "a", "b", "c", "d" would be enough, doesn't exist, print "NO" (without quotes) in the first line.

输入输出样例

  • 输入#1

    6 10
    .w.wbw.wbw
    wbwbw.w.w.
    bw.wbwbwbw
    w.wbw.wbwb
    ...wbw.w.w
    ..wbw.wbw.
    

    输出#1

    YES
    .a.aaa.ccc
    baccc.c.a.
    ba.dddcbab
    b.aaa.cbab
    ...bbb.b.b
    ..ccc.ddd.
  • 输入#2

    2 2
    wb
    bw
    

    输出#2

    NO
    
  • 输入#3

    1 3
    wbw
    

    输出#3

    YES
    bbb
    
  • 输入#4

    1 3
    ...
    

    输出#4

    YES
    ...
    
首页