• 7A


    A. Kalevitch and Chess
    time limit per test
    2 seconds
    memory limit per test
    64 megabytes
    input
    standard input
    output
    standard output

    A famous Berland's painter Kalevitch likes to shock the public. One of his last obsessions is chess. For more than a thousand years people have been playing this old game on uninteresting, monotonous boards. Kalevitch decided to put an end to this tradition and to introduce a new attitude to chessboards.

    As before, the chessboard is a square-checkered board with the squares arranged in a 8 × 8 grid, each square is painted black or white. Kalevitch suggests that chessboards should be painted in the following manner: there should be chosen a horizontal or a vertical line of 8 squares (i.e. a row or a column), and painted black. Initially the whole chessboard is white, and it can be painted in the above described way one or more times. It is allowed to paint a square many times, but after the first time it does not change its colour any more and remains black. Kalevitch paints chessboards neatly, and it is impossible to judge by an individual square if it was painted with a vertical or a horizontal stroke.

    Kalevitch hopes that such chessboards will gain popularity, and he will be commissioned to paint chessboards, which will help him ensure a comfortable old age. The clients will inform him what chessboard they want to have, and the painter will paint a white chessboard meeting the client's requirements.

    It goes without saying that in such business one should economize on everything — for each commission he wants to know the minimum amount of strokes that he has to paint to fulfill the client's needs. You are asked to help Kalevitch with this task.

    Input

    The input file contains 8 lines, each of the lines contains 8 characters. The given matrix describes the client's requirements, W character stands for a white square, and B character — for a square painted black.

    It is guaranteed that client's requirments can be fulfilled with a sequence of allowed strokes (vertical/column or horizontal/row).

    Output

    Output the only number — the minimum amount of rows and columns that Kalevitch has to paint on the white chessboard to meet the client's requirements.

    Examples
    Input
    WWWBWWBW
    BBBBBBBB
    WWWBWWBW
    WWWBWWBW
    WWWBWWBW
    WWWBWWBW
    WWWBWWBW
    WWWBWWBW
    Output
    3
    Input
    WWWWWWWW
    BBBBBBBB
    WWWWWWWW
    WWWWWWWW
    WWWWWWWW
    WWWWWWWW
    WWWWWWWW
    WWWWWWWW
    Output
    1

    这题挺简单,输入8x8的矩阵,画家一笔8格。问画家最少画几笔。

    下面对比下我和高手代码上扎心的差距:
    我的代码:
     1 #include<bits/stdc++.h>
     2 #define Max 9
     3 using namespace std;
     4 
     5 char st[Max][Max];
     6 int row[Max],col[Max];
     7 int main()
     8 {
     9     int ans=0,flag=0;
    10     
    11     for(int i=0;i<Max-1;i++)
    12     scanf("%s",st[i]);
    13     for(int i=0;i<Max-1;i++)
    14     {
    15         for(int k=0;k<Max-1;k++)
    16         {
    17             if(st[i][k]!='B')
    18             {
    19                 row[i]=1;
    20                 break;
    21             }
    22         }
    23     }
    24     for(int i=0;i<Max-1;i++)
    25     {
    26         for(int k=0;k<Max-1;k++)
    27         {
    28             if(st[k][i]!='B')
    29             {
    30                 col[i]=1;
    31                 break;
    32             }
    33         }
    34     }
    35     for(int i=0;i<Max-1;i++)
    36     {
    37         if(!col[i])
    38         ans++;
    39         if(!row[i])
    40         ans++;    
    41     }
    42     if(ans==16)
    43     printf("8
    ");
    44     else
    45     printf("%d
    ",ans);
    46     return 0;
    47 }

    别人家的代码:

     1 #include <bits/stdc++.h>
     2 using namespace std;
     3 char s[8];
     4 int a,b,c;
     5 int main(){
     6     for(int i=0;i<8;i++){
     7         c=0;
     8         for(int j=0;j<8;j++){
     9             cin>>s[j];
    10             if(s[j]=='B')c++;
    11         }
    12         if(c==8)a++;
    13         else b=c;
    14     }
    15     cout<<a+b<<endl;
    16 }
  • 相关阅读:
    framework7 底部弹层popup js关闭方法
    div动画旋转效果
    面试题3
    面试题2
    CORS跨域请求[简单请求与复杂请求]
    面试题1
    nginx
    Pycharm配置支持vue语法
    Ajax在jQuery中的应用---加载异步数据
    jQuery开发入门
  • 原文地址:https://www.cnblogs.com/zmin/p/6675358.html
Copyright © 2020-2023  润新知