CodeForces 688A Opponents (水题)

Posted dwtfukgv

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CodeForces 688A Opponents (水题)相关的知识,希望对你有一定的参考价值。

题意:给定 n 行数,让你找出连续最多的全是1的个数。

析:好像也没什么可说的,那就判断一下,并不断更新最大值呗。

代码如下:

#include <iostream>
#include <cmath>
#include <cstdlib>
#include <set>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <string>

using namespace std;
typedef long long LL;
string s;

int main(){
    int n, d, cnt = 0;
    bool ok = false;
    int m = -1;
    scanf("%d %d", &n, &d);
    for(int i = 0; i < d; ++i){
        cin >> s;
        int j;
        for(j = 0; j < n; ++j)
            if(s[j] != ‘1‘)  break;

        if(ok && j != n)  ++cnt;
        else if(j != n){  ok = true; cnt = 1; }
        else{ cnt = 0; ok = false; }
        m = max(m ,cnt);
    }
    printf("%d\n", m);
    return 0;
}

 

以上是关于CodeForces 688A Opponents (水题)的主要内容,如果未能解决你的问题,请参考以下文章

Google Play 游戏服务 createAutoMatchCriteria MIN_OPPONENTS > 1

数据库结构,怎么想

关于sql中 convert函数用法

使用 Jasmine 和 Rails 3.1 测试 Coffeescript

codeforces上怎么看测试数据

如何看codeforces做了多少题