Codeforces Beta Round #7 A. Kalevitch and Chess 水题

A. Kalevitch and Chess

题目连接:

http://www.codeforces.com/contest/7/problem/A

Description

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.

Sample Input

WWWBWWBW
BBBBBBBB
WWWBWWBW
WWWBWWBW
WWWBWWBW
WWWBWWBW
WWWBWWBW
WWWBWWBW

Sample Output

3

Hint

题意

给你一个8*8的矩阵,一开始全是白色的

然后你有一个刷子,可以把某一行或者某一列刷成黑色

问你最少刷多少发。

题解:

某一行全是B,那么就横着刷,否则就竖着刷嘛

然后就完了……

代码

#include<bits/stdc++.h>
using namespace std;

string s;
int vis[10][10];
int main()
{
    int ans1=0,ans2=10;
    for(int i=1;i<=8;i++)
    {
        cin>>s;
        int add = 0;
        for(int j=0;j<8;j++)
            if(s[j]=='B')add++;
        if(add==8)ans1++;
        ans2=min(ans2,add);
    }
    if(ans1==8)cout<<8<<endl;
    else cout<<ans1+ans2<<endl;
}
    原文作者:qscqesze
    原文地址: https://www.cnblogs.com/qscqesze/p/5364533.html
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞