Codeforces Round #254 (Div. 2)445A DZY Loves Chessboard(字符串处理)
发布日期:2021-11-06 16:56:36 浏览次数:9 分类:技术文章

本文共 2320 字,大约阅读时间需要 7 分钟。

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
BWWB
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.

AC代码:

#include 
#include
//author:XXYYint main(){ int n,m,i,j; char a[110][110],b; while(~scanf("%d%d",&n,&m)){ memset(a,'-',sizeof(a)); getchar(); for(i=1;i<=n;i++){ for(j=1;j<=m;j++){ scanf("%c",&b); if(i%2&&j%2){ if(b=='.') a[i][j]='B'; } else if(i%2&&j%2==0){ if(b=='.') a[i][j]='W'; } else if(i%2==0&&j%2){ if(b=='.') a[i][j]='W'; } else if(i%2==0&&j%2==0){ if(b=='.') a[i][j]='B'; } } getchar(); } for(i=1;i<=n;i++){ for(j=1;j<=m;j++) printf("%c",a[i][j]); printf("\n"); } } return 0;}

转载地址:https://blog.csdn.net/YJX_xx/article/details/37510913 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:Codeforces Round #254 (Div. 2) 445B - DZY Loves Chemistry (并查集)
下一篇:UVALive 6345 The Glittering Caves of Aglarond (找规律求最多)

发表评论

最新留言

关注你微信了!
[***.104.42.241]2024年04月10日 00时40分30秒