zoukankan      html  css  js  c++  java
  • (CF)Codeforces445A DZY Loves Chessboard(纯实现题)

    转载请注明出处:http://blog.csdn.net/u012860063?

    viewmode=contents

    题目链接:http://codeforces.com/problemset/problem/445/A


    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.



    代码例如以下:

    #include <cstdio>
    #include <cmath>
    #include <cstring>
    #include <iostream>
    #include <algorithm>
    using namespace std;
    int main()
    {
        int i, j;
        int n, m;
        char map[117][117],G[117][117];
        while(scanf("%d%d",&n,&m)!=EOF)
        {
            getchar();
            for(i = 0; i < n; i++)
            {
                scanf("%s",map[i]);
            }
            for( i = 0; i < n; i++)
            {
                for(j = 0; j < m; j++)
                {
                    if(map[i][j] == '-')
                        G[i][j] = '-';
                    else if(i %2 ==  0)
                    {
                        if(j%2 == 0)
                        {
                            G[i][j] = 'B';
                        }
                        else
                            G[i][j] = 'W';
                    }
                    else if(i%2 == 1)
                    {
                        if(j%2 == 1)
                        {
                            G[i][j] = 'B';
                        }
                        else
                            G[i][j] = 'W';
                    }
                }
            }
            for(i = 0; i < n; i++)
            {
                for(j = 0; j < m; j++)
                {
                    printf("%c",G[i][j]);
                }
                printf("
    ");
            }
        }
        return 0;
    }



  • 相关阅读:
    UOJ#310. 【UNR #2】黎明前的巧克力(FWT)
    cf24D. Broken robot(高斯消元)
    loj#2483. 「CEOI2017」Building Bridges(dp cdq 凸包)
    给博客园加一个会动的小人-spig.js
    loj#6033. 「雅礼集训 2017 Day2」棋盘游戏(二分图博弈)
    loj#6032. 「雅礼集训 2017 Day2」水箱(并查集 贪心 扫描线)
    洛谷P4103 [HEOI2014]大工程(虚树 树形dp)
    Oracle DB SQL 性能分析器
    ORA-000845 与 /dev/shm(tempfs)
    ID3DXMesh接口 创建自己的立方体网格
  • 原文地址:https://www.cnblogs.com/cynchanpin/p/6839775.html
Copyright © 2011-2022 走看看