CF445A.DZY Loves Chessboard

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

DZY loves chessboard, and he enjoys playing with it.

He has a chessboard of nn rows and mm columns. Some cells of the chessboard are bad, others are good. For every good cell, DZY wants to put a chessman on it. Each chessman is either white or black. After putting all chessmen, DZY wants that no two chessmen with the same color are on two adjacent cells. Two cells are adjacent if and only if they share a common edge.

You task is to find any suitable placement of chessmen on the given chessboard.

输入格式

The first line contains two space-separated integers nn and mm (1<=n,m<=100)(1<=n,m<=100) .

Each of the next nn lines contains a string of mm characters: the jj -th character of the ii -th string is either "." or "-". A "." means that the corresponding cell (in the ii -th row and the jj -th column) is good, while a "-" means it is bad.

输出格式

Output must contain nn lines, each line must contain a string of mm characters. The jj -th character of the ii -th string should be either "W", "B" or "-". Character "W" means the chessman on the cell is white, "B" means it is black, "-" means the cell is a bad cell.

If multiple answers exist, print any of them. It is guaranteed that at least one answer exists.

输入输出样例

  • 输入#1

    1 1
    .
    

    输出#1

    B
    
  • 输入#2

    2 2
    ..
    ..
    

    输出#2

    BW
    WB
    
  • 输入#3

    3 3
    .-.
    ---
    --.

    输出#3

    B-B
    ---
    --B

说明/提示

In the first sample, DZY puts a single black chessman. Of course putting a white one is also OK.

In the second sample, all 44 cells are good. No two same chessmen share an edge in the sample output.

In the third sample, no good cells are adjacent. So you can just put 33 chessmen, no matter what their colors are.

首页