zoukankan      html  css  js  c++  java
  • 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
    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.

     1 //这是一道bfs题,但是也可以当成一道模拟题。。。我目前算法比较渣,但是想到了这种方法
     2 //先把格子填满,输入'.'时只要把对应填好的B 或 W替换掉就可以了
     3 #include <stdio.h>
     4 #include <string.h>
     5 char map[102][102];
     6 char in[102][102];
     7 
     8 int main()
     9 {
    10     int i,j,m,n,t;
    11     for(i=0;i<102;i++)
    12     {
    13         for(j=0;j<102;j++)
    14         {
    15             if((i+j)%2)map[i][j]='B';
    16             else map[i][j]='W';
    17         }
    18     }
    19     while(~scanf("%d %d",&n,&m))
    20     {
    21         getchar();
    22         memset(in,0,sizeof (in));
    23         for(i=0;i<n;i++)
    24         {
    25             gets(in[i]);
    26         }
    27         for(i=0;i<n;i++)
    28         {
    29             for(j=0;j<m;j++)
    30             {
    31                 if(in[i][j]=='.')in[i][j]=map[i][j];
    32             }
    33         }
    34         for(i=0;i<n;i++)
    35             puts(in[i]);
    36     }
    37     return 0;
    38 }
  • 相关阅读:
    try {}里有一个 return 语句,那么紧跟在这个 try 后的 finally {}里的 code 会不会被执行,什么时候被执行,在 return 前还是后?
    BigDecimal 使用 静态方法总结
    成员内部类里面为什么不能有静态成员和方法?
    浅谈多态机制的意义及实现
    Java接口中的成员变量的意义
    IDEA 打包和导入 Jar 包
    Java static关键字
    Java this关键字
    Java 匿名对象
    Java JOptionPane 对话框
  • 原文地址:https://www.cnblogs.com/sylvialucy/p/4119130.html
Copyright © 2011-2022 走看看