codeforces 7 A. Kalevitch and Chess

简介:

题目链接:http://codeforces.com/contest/7/problem/A
以前写的时候写的有点不是很好有点麻烦,看了一些大牛们的思路后感觉自己以前的代码真是弱爆了。
AC代码如下:

#include <iostream>
#include <cstring>
#include <cstdio>
using namespace std;
char s[10][10];
int main()
{
    char s1[8];
    int sum=0;
    strcpy(s1,"BBBBBBBB");
    for(int i=0; i<8; i++)
    {
        cin>>s[i];
        if(strcmp(s[i],s1) == 0)
            sum++;
    }
    //cout<<sum<<endl;
    if(sum < 8)
    {
        for(int i=0; i<8; i++)
        {
            int f=0;
            for(int j=0; j<8; j++)
            {
                 if(s[j][i] == 'W')
                 {
                     //sum++;
                     f=1;
                     break;
                 }
            }
            if(!f)
                sum++;
        }
        cout<<sum<<endl;
    }
    else
        cout<<8<<endl;
    return 0;
}
目录
相关文章
codeforces 322 B Ciel and Flowers
有红绿蓝三种颜色的画,每种拿三朵可以组成一束花,或者各拿一朵组成花束,告诉你每种花的数目,求出可能组成最多的花束。 如果你的代码过不了,考虑一下 8 8 9这种组合。 因为数据量很大,我的思想就是局部和总体采用不同的策略。
46 0
codeforces 312
A. Whose sentence is it?
46 0
|
5月前
codeforces
【6月更文挑战第10天】
30 0
|
C++
codeforces 305 C. Ivan and Powers of Two
我的思路是这样的,由2^a+2^a = 2^(a+1)可知,如果有两个连续的数a,我们可以把他们合并为a+1放入集合中,使集合中没有重复的数,我可以用stl里的set。如果想要满足题目中的要求,集合中必须有最大那个数个元素,缺多少就可以计算出来了。
29 0
C - Rumor CodeForces - 893C
C - Rumor CodeForces - 893C
85 0
Codeforces 591B Rebranding
B. Rebranding time limit per test:2 seconds memory limit per test:256 megabytes input:standard input output:standard output ...
851 0
|
人工智能
Codeforces 719B Anatoly and Cockroaches
B. Anatoly and Cockroaches time limit per test:1 second memory limit per test:256 megabytes input:standard input output:stan...
889 0