Codeforces 445 A DZY Loves Chessboard(预处理)

来源:互联网 发布:js数组重排序 编辑:程序博客网 时间:2024/05/23 13:03
                                DZY Loves Chessboard
Time Limit:1000MS Memory Limit:262144KB 64bit IO Format:%I64d & %I64u
Submit

Status
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
Hint
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,最后要求所有的B和W都不相邻

#include<stdio.h>#include<string.h>#include<algorithm>using namespace std;int main(){    int row, col;    int map[110][110];    int vis[110][110];    for(int i = 0; i <110; i++)    {        for(int j = 0; j <110; j++)        {            if((i+j) % 2 == 0)                map[i][j] = 1;            else                map[i][j] = 0;        }    }    scanf("%d %d%*c", &row, &col);    for(int i = 0; i < row; i++)    {        for(int j = 0; j < col; j++)        {            char a = getchar();            if(a == '-')               map[i][j] = -1;        }        getchar();    }    for(int i = 0; i < row; i++)    {        for(int j = 0; j < col; j++)        {            if(map[i][j] == 0)                printf("B");            else if(map[i][j] == 1)                printf("W");            else                printf("-");        }        puts("");    }    return 0;}


0 0
原创粉丝点击