• Codeforces445A_DZY Loves Chessboard(预处理)


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

    解题报告

    预处理图,B和W相间。

    输入“-”让mmap[i][j]='-'

    #include <iostream>
    #include <cstdio>
    #include <cstring>
    #include <algorithm>
    using namespace std;
    char mmap[110][110];
    int n,m;
    int main()
    {
        int i,j;
        while(~scanf("%d%d",&n,&m))
        {
            memset(mmap,0,sizeof(mmap));
            char c='B';
            for(i=1; i<=n; i++)
            {
                if(i%2!=0)
                c='B';
                else c='W';
                for(j=1; j<=m; j++)
                {
                        mmap[i][j]=c;
                        if(c=='B')
                        c='W';
                        else c='B';
                }
            }
            for(i=1;i<=n;i++)
            {
            for(j=1;j<=m;j++)
            {
            cin>>c;
            if(c=='-')
            mmap[i][j]=c;
            }
            }
            for(i=1; i<=n; i++)
            {
                for(j=1; j<=m; j++)
                    cout<<mmap[i][j];
                cout<<endl;
            }
        }
        return 0;
    }


  • 相关阅读:
    查询数据库中的相同值得所有表跟字段【存储过程】
    一些常用的SQL语句
    添加网站本地映射
    ReSharper 2016.3.2 Ultimate 官方最新破解版
    C# 利用VS自带的WSDL工具生成WebService服务类
    Linux环境下docker搭建wordpress应用
    Appium环境搭建
    内联以及外联css,js文件的理解
    前端雅虎23条理解
    docker安装和使用
  • 原文地址:https://www.cnblogs.com/cxchanpin/p/7236171.html
Copyright © 2020-2023  润新知