CodeForces - 7A Kalevitch and Chess(搜索?!模拟!)

Kalevitch and Chess

Time Limit: 2000MS   Memory Limit: 65536KB   64bit IO Format: %I64d & %I64u

Submit Status

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

Input

WWWBWWBW
BBBBBBBB
WWWBWWBW
WWWBWWBW
WWWBWWBW
WWWBWWBW
WWWBWWBW
WWWBWWBW

Output

3

Input

WWWWWWWW
BBBBBBBB
WWWWWWWW
WWWWWWWW
WWWWWWWW
WWWWWWWW
WWWWWWWW
WWWWWWWW

Output

1

Source

Codeforces Beta Round #7

题意:

有一个 8*8的棋盘,每个方格原来有一部分白色(W),现在有一部分被涂成了黑色(B),现在要把整个棋盘涂成白色,问至少需要涂多少行(列)是的整个棋盘变成白色.

PS:英语渣呀,看了别人的代码才知道要涂的肯定是整行或整列,模拟就可以了,顺便附上Q神的代码.

AC代码:

#include <iostream>
using namespace std;
char a[10][10];
bool black_row(int x)//行
{
    for(int i=0;i<8;i++)
        if(a[x][i]=='W')
            return false;
    return true;
}
bool black_col(int x)//列
{
    for(int i=0;i<8;i++)
        if(a[i][x]=='W')
            return false;
    return true;
}
int main()
{
    for(int i=0;i<8;i++)
        cin>>a[i];
    int black=0;
    int ans=0;
    for(int i=0;i<8;i++)
        if(black_row(i)) ans++;
    for(int i=0;i<8;i++)
        if(black_col(i)) ans++;
    if(ans==16) ans=8;
    cout<<ans<<endl;
    return 0;
}

q神代码:膜拜!

#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<cmath>
#include<iostream>
#include<algorithm>
using namespace std;
char s[15][15];
int main()
{
    for(int i=0;i<8;i++)
        scanf("%s",s[i]);//B->W
    bool flag=0;
    int x,y;
    for(int i=0;i<8;i++)
        for(int j=0;j<8;j++)
            if(s[i][j]=='W')
            {
                flag=1;
                x=i;
                y=j;
            }
    if(!flag)return 0*printf("8");//全部为B
    int res=0;
    for(int i=0;i<8;i++)
        res+=s[i][y]=='B';
    for(int j=0;j<8;j++)
        res+=s[x][j]=='B';
    return 0*printf("%d",res);
}
时间: 2024-10-07 05:30:51

CodeForces - 7A Kalevitch and Chess(搜索?!模拟!)的相关文章

组队赛#1 解题总结 ZOJ 3803 YY&#39;s Minions (DFS搜索+模拟)

YY's Minions Time Limit: 2 Seconds      Memory Limit: 65536 KB Despite YY's so much homework, she would like to take some time to play with her minions first. YY lines her minions up to an N*M matrix. Every minion has two statuses: awake or asleep. W

Codeforces 97D Robot in Basement bitset+模拟

题目链接:点击打开链接 题意: 每个点有一个机器人(.),下面是一些指令,每次发出指令(一个字母)所有机器人都会执行移动. 当机器人到E点就会离开. 若机器人前方是'#' 或者边界则停留原地.一个方格可以站多个机器人. bitset模拟.. #include <cstdio> #include <cstring> #include <algorithm> #include <bitset> using namespace std; char s[100005

Codeforces 12D Ball 树状数组模拟3个元素的排序

题目链接:点击打开链接 #include<stdio.h> #include<iostream> #include<string.h> #include<set> #include<vector> #include<map> #include<math.h> #include<queue> #include<string> #include<stdlib.h> #include<a

codeforces 459C Pashmak and Buses(模拟,组合数A)

题目 跑个案例看看结果就知道了:8 2 3 题目给的数据是 n,k,d 相当于高中数学题:k个人中选择d个人排成一列,有多少种不同的方案数,列出其中n中就可以了. #include<iostream> #include<algorithm> #include<string> #include <stdio.h> #include <string.h> #include <stdlib.h> #include <math.h>

Codeforces 309C Memory for Arrays 二进制模拟进位

题目链接:点击打开链接 题意: 给定n个箱子m个物品 下面n个数字表示箱子的容量 下面m个数字b1-bm 表示物品体积为2^bi大 问最多有多少个物品可以放入箱子. 思路: 贪心,先放小的,小的不能放再放大的 显然我们把n个箱子拆成二进制,然后模拟二进制减法运算. 剩下就是简单模拟 #include<stdio.h> #include<string.h> #include<iostream> #include<algorithm> #include<m

模拟 --- 搜索模拟

Robot Motion Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 10130   Accepted: 4932 Description A robot has been programmed to follow the instructions in its path. Instructions for the next direction the robot is to move are laid down in

Codeforces Round #379 (Div. 2) D. Anton and Chess(模拟)

Anton likes to play chess. Also, he likes to do programming. That is why he decided to write the program that plays chess. However, he finds the game on 8 to 8 board to too simple, he uses an infinite one instead. The first task he faced is to check

Codeforces Beta Round #7 A. Kalevitch and Chess

题目大意 给出一个8*8的矩阵包含黑白色块,问最少操作几次可以恢复白色. 解题思路 水题,记录下行和列黑块的个数,进行操作即可. 题目代码 #include <set> #include <map> #include <queue> #include <math.h> #include <vector> #include <string> #include <stdio.h> #include <string.h&g

CodeForces 388A Fox and Box Accumulation (模拟)

A. Fox and Box Accumulation time limit per test:1 second memory limit per test:256 megabytes Fox Ciel has n boxes in her room. They have the same size and weight, but they might have different strength. The i-th box can hold at most xi boxes on its t