codeforces 7 A. Kalevitch and Chess

Posted ITAK

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 7 A. Kalevitch and Chess的主要内容,如果未能解决你的问题,请参考以下文章

codeforces 655A A. Amity Assessment(水题)

codeforces 632A A. Grandma Laura and Apples

Codeforces Round #353 (Div. 2) A. Infinite Sequence

[codeforces 241]A. Old Peykan

Codeforces Round #353 (Div. 2) A. Infinite Sequence 思维题

codeforces 653A A. Bear and Three Balls(水题)