CF1863D.Two-Colored Dominoes

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

There is an n×mn\times m board divided into cells. There are also some dominoes on this board. Each domino covers two adjacent cells (that is, two cells that share a side), and no two dominoes overlap.

Piet thinks that this board is too boring and it needs to be painted. He will paint the cells of the dominoes black and white. He calls the painting beautiful if all of the following conditions hold:

  • for each domino, one of its cells is painted white and the other is painted black;
  • for each row, the number of black cells in this row equals the number of white cells in this row;
  • for each column, the number of black cells in this column equals the number of white cells in this column.

Note that the cells that are not covered by dominoes are not painted at all, they are counted as neither black nor white.

Help Piet produce a beautiful painting or tell that it is impossible.

输入格式

Each test contains multiple test cases. The first line contains the number of test cases tt ( 1t100001 \le t \le 10\,000 ). The description of the test cases follows.

The first line of each test case contains two integers nn and mm ( 2n,m5002\le n, m\le 500 ).

The next nn lines describe the tiling of the board, row by row from top to bottom. Each of these lines contains mm characters, describing the cells in the corresponding row from left to right. Each character is one of U, D, L, R, or ., meaning that the cell is covered with a top, bottom, left, right half of a domino or nothing, respectively. The tiling is guaranteed to be valid.

It is guaranteed that the sum of nmn \cdot m over all test cases does not exceed 250000250\,000 .

输出格式

For each test case, output a single integer 1-1 if a beautiful painting does not exist. Otherwise, print nn lines, each containing mm characters, describing the colors in the corresponding row of a beautiful painting. Every character corresponding to a cell not covered by a domino must be . (a dot), and all other characters must be B if the corresponding cell is black or W if it is white.

If there are multiple solutions, print any of them.

输入输出样例

  • 输入#1

    3
    4 6
    ..LR..
    ULRU..
    DLRDUU
    ..LRDD
    5 4
    .LR.
    .UU.
    UDDU
    D..D
    LR..
    2 2
    ..
    ..

    输出#1

    ..WB..
    WWBB..
    BBWWWB
    ..BWBW
    -1
    ..
    ..

说明/提示

In the first test case, the answer is illustrated below:

In the second test case, it is impossible to paint all cells the right way.

首页