隐藏页面特效

CF 445A DZY Loves Chessboard

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.

Examples
input
Copy
1 1 .
output
Copy
B
input
Copy
2 2 .. ..
output
Copy
BW WB
input
Copy
3 3 .-. --- --.
output
Copy
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的矩阵,用B和W填充‘.’,且相邻的位置不可以相同。

 

【分析1】

看做一个二分图,经典染色法
 

【代码1】

#include<cstdio> #include<cstdlib> using namespace std; const int N=105; int n,m,ans,dir[4][2]={{0,1},{0,-1},{1,0},{-1,0}}; char mp[N][N]; void dfs(int x,int y,bool t){ mp[x][y]=(t?'B':'W'); for(int i=0;i<4;i++){ int nx=x+dir[i][0]; int ny=y+dir[i][1]; if(nx<1||ny<1||nx>n||ny>m||mp[nx][ny]!='.') continue; dfs(nx,ny,t^1); } } inline void Init(){ scanf("%d%d",&n,&m); for(int i=1;i<=n;i++) scanf("%s",mp[i]+1); } inline void Solve(){ for(int i=1;i<=n;i++){ for(int j=1;j<=m;j++){ if(mp[i][j]=='.') dfs(i,j,1); } } for(int i=1;i<=n;i++) puts(mp[i]+1); } int main(){ Init(); Solve(); return 0; }

 

  

【分析2】

规律:若当前位置为’.’,就i + j 时为奇数时输出W,反之输出B;若当前位置为’-’,直接输出
 

【代码2】

#include<cstdio> #include<cstdlib> using namespace std; const int N=105; int n,m; char mp[N][N]; inline void Init(){ scanf("%d%d",&n,&m); for(int i=1;i<=n;i++) scanf("%s",mp[i]+1); } inline void Solve(){ for(int i=1;i<=n;i++){ for(int j=1;j<=m;j++){ if(mp[i][j]=='-') printf("-"); else printf("%s",(i+j)&1?"W":"B"); } puts(""); } } int main(){ Init(); Solve(); return 0; }

 

 

 

 


__EOF__

本文作者shenben
本文链接https://www.cnblogs.com/shenben/p/10353259.html
关于博主:评论和私信会在第一时间回复。或者直接私信我。
版权声明:本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!
声援博主:如果您觉得文章对您有帮助,可以点击文章右下角推荐一下。您的鼓励是博主的最大动力!
posted @   神犇(shenben)  阅读(386)  评论(0编辑  收藏  举报
编辑推荐:
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
阅读排行:
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 地球OL攻略 —— 某应届生求职总结
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· 提示词工程——AI应用必不可少的技术
历史上的今天:
2017-02-05 1086: [SCOI2005]王室联邦
2017-02-05 OIer同样是音乐家
2017-02-05 58. 延绵的山峰
2017-02-05 P3382 【模板】三分法
2017-02-05 1269: [AHOI2006]文本编辑器editor
点击右上角即可分享
微信分享提示