`
Simone_chou
  • 浏览: 184626 次
  • 性别: Icon_minigender_2
  • 来自: 广州
社区版块
存档分类
最新评论

DZY Loves Chessboard(杂)

    博客分类:
  • CF
 
阅读更多
A. DZY Loves Chessboard
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

DZY loves chessboard, and he enjoys playing with it.

He has a chessboard of n rows and m 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.

Input

The first line contains two space-separated integers n and m (1 ≤ n, m ≤ 100).

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

Output

Output must contain n lines, each line must contain a string of m characters. The j-th character of the i-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.

Sample test(s)
input
1 1
.
output
B
input
2 2
..
..
output
BW
WB
input
3 3
.-.
---
--.
output
B-B
---
--B
Note

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

In the second sample, all 4 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 3 chessmen, no matter what their colors are.

 

     题意:

     给出 n,m(1 ~ 150),代表有一个 N X M 的棋盘,- 代表这个地方不能填棋子,. 代表可以填充棋子。填充 W 和 B 两种棋子,任意相邻位置不能是相同的,输出这个棋盘的填充情况。

 

     思路:

     杂题。相间填充黑白棋是一定不会相邻的,有 - 的区别就是 - 就不显示这个位置的棋子而已。所以任意一个棋盘一定会存在两种解,不可能不存在的。一开始就读错题意了。最近智商有点降低。最后判断 (i + j )是否整除 2 来输出答案就好了。

 

      AC:

#include <cstdio>
#include <cstring>
#include <algorithm>

using namespace std;

char Map[105][105];

int main() {

    memset(Map, 0, sizeof(Map));
    int n, m;
    scanf("%d%d", &n, &m);

    for (int i = 1; i <= n; ++i) {
        for (int j = 1; j <= m; ++j) {
            scanf(" %c", &Map[i][j]);
            if (Map[i][j] == '.') {
                if ((i + j) % 2) Map[i][j] = 'B';
                else Map[i][j] = 'W';
            }
        }
    }

    for (int i = 1; i <= n; ++i) {
        for (int j = 1; j <= m; ++j) {
            printf("%c", Map[i][j]);
        }
        printf("\n");
    }

    return 0;
}

 

 

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics