• D


    Description

    Arya has n opponents in the school. Each day he will fight with all opponents who are present this day. His opponents have some fighting plan that guarantees they will win, but implementing this plan requires presence of them all. That means if one day at least one of Arya's opponents is absent at the school, then Arya will beat all present opponents. Otherwise, if all opponents are present, then they will beat Arya.

    For each opponent Arya knows his schedule — whether or not he is going to present on each particular day. Tell him the maximum number of consecutive days that he will beat all present opponents.

    Note, that if some day there are no opponents present, Arya still considers he beats all the present opponents.

    Input

    The first line of the input contains two integers n and d (1 ≤ n, d ≤ 100) — the number of opponents and the number of days, respectively.

    The i-th of the following d lines contains a string of length n consisting of characters '0' and '1'. The j-th character of this string is '0' if the j-th opponent is going to be absent on the i-th day.

    Output

    Print the only integer — the maximum number of consecutive days that Arya will beat all present opponents.

    Sample Input

    Input
    2 2
    10
    00
    Output
    2
    Input
    4 1
    0100
    Output
    1
    Input
    4 5
    1101
    1111
    0110
    1011
    1111
    Output
    2

    题意:

    Arya与n个对手每天打一架,当这一天n个对手全部来时Arya就输了,否则就是Arya赢,求最大连胜天数。

    附AC代码:

    #include<iostream>
    #include<cstdio>
    #include<cstring>
    #include<algorithm>
    #include<cmath>
    using namespace std;
    
    int main( )
    {
        int n,d,i,j,k=0,c=0,l=0,max=0;
        char a[101];
        scanf("%d %d",&n,&d);
        for(i=0;i<d;i++)
        {
            c=0;
            scanf("%s",a);
            l=strlen(a);
            for(j=0;j<l;j++)
            {
                if(a[j]=='1')
                {
                    c+=1;
                }
            }
            if(c!=l)
            {
                k+=1;
            }
            if(k>max)
            {
                max=k;
            }
            if(c==l)
            {
                k=0;
            }
        }
        printf("%d
    ",max);
        return 0;
    }
  • 相关阅读:
    支持nmap批量漏洞扫描的script
    Linux学习路径(小白必看)
    SEED实验系列:Collabtive系统SQL注入实验
    SEED实验系列:ShellShock 攻击实验
    SEED信息安全实验系列:缓冲区溢出漏洞实验
    SEED实验系列:缓冲区溢出漏洞试验
    信息安全不可错过的30门实验
    SEED实验系列文章目录
    Laravel大型项目系列教程(七)之7 扩展包和Artisan开发
    laravel大型项目系列教程(六)之优化、单元测试以及部署
  • 原文地址:https://www.cnblogs.com/Kiven5197/p/5656006.html
Copyright © 2020-2023  润新知