dzy loves chessboard

Description
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 Input
Input
1 1
.
Output
B
Input
2 2
..
..
Output
BW
WB
Input
3 3
.-.
---
--.
Output
B-B
---

--B

簡單題一道卡半年,acm渣渣連預處理都不知道,想了好幾種推法一直都沒辦法ac,看了其他人的解法後感到了這個世界深深的惡意,呵呵呵呵呵呵呵~~~

#include<stdio.h>
#include<string.h>
int main( )
{
    int m,n,i,j;
    char a[100][100];
    char b[100][100];
    while(scanf("%d%d",&m,&n)!=EOF)
    {
        memset(a,0,sizeof(a));
        a[0][0]='B';
        for(i=0;i<n;i++)
        {
            if(i%2==0)a[i][0]='B';
            else a[i][0]='W';
            for(j=1;j<n;j++)
            {
                if(a[i][j-1]=='B')a[i][j]='W';
                else if(a[i][j-1]='W')a[i][j]='B';
            }
        }
        for(i=0;i<m;i++)
            scanf("%s",b[i]);
        for(i=0;i<m;i++)
        {
            for(j=0;j<n;j++)
                if(b[i][j]=='-')printf("-");
                else printf("%c",a[i][j]);
            printf("\n");
        }
    }
    return 0;
}


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章