zoukankan      html  css  js  c++  java
  • #C++初学记录(算法考试1)

    **B - Maximal Continuous Rest **

    Each day in Berland consists of n hours. Polycarp likes time management. That's why he has a fixed schedule for each day — it is a sequence a1,a2,…,an (each ai is either 0 or 1), where ai=0 if Polycarp works during the i-th hour of the day and ai=1 if Polycarp rests during the i-th hour of the day.

    Days go one after another endlessly and Polycarp uses the same schedule for each day.

    What is the maximal number of continuous hours during which Polycarp rests? It is guaranteed that there is at least one working hour in a day.

    Input
    The first line contains n (1≤n≤2⋅105) — number of hours per day.

    The second line contains n integer numbers a1,a2,…,an (0≤ai≤1), where ai=0 if the i-th hour in a day is working and ai=1 if the i-th hour is resting. It is guaranteed that ai=0 for at least one i.

    Output
    Print the maximal number of continuous hours during which Polycarp rests. Remember that you should consider that days go one after another endlessly and Polycarp uses the same schedule for each day.

    Examples
    Input
    5
    1 0 1 0 1
    Output
    2
    Input
    6
    0 1 0 1 1 0
    Output
    2
    Input
    7
    1 0 1 1 1 0 1
    Output
    3
    Input
    3
    0 0 0
    Output
    0
    正确代码

    #include<bits/stdc++.h>
    using namespace std;
    const int MM = 2e5+5;
    int a[MM];
    int main()
    {
        int n, res = 0, maxx = 0;
        cin >> n;
        for(int i = 1; i <= n; i++)
        {
            cin >> a[i];
            if(a[i] == 1)
            {
                res++;
                if(i == n && maxx < res)
                {
                    //if(maxx < res)
                    //{
                        maxx = res;
                        res = 0;
                   // }
                }
            }
            else
            {
                if(maxx < res)
                {
                    maxx = res;
                }
                res = 0;
            }
        }
        int res1 = 0, res2 = 0;
        for(int i = 1; i <= n; i++)
        {
            if(a[i] == 1) res1++;
            else break;
        }
        for(int i = n; i >= 1; i--)
        {
            if(a[i] == 1) res2++;
            else break;
        }
        int tt = 0;
        if(res1 != n)
            tt = res1+res2;
        //cout << maxx << endl;
        printf("%d
    ", tt > maxx? tt:maxx);
        return 0;
    }
    

    代码理解
    该题不难,主要目的是判断1的连续个数,主要难点是如何判断开头和结尾1连续的个数,如果想到在两边同时进行判断则可以很迅速的编写完成代码,首先用if语句判断1的连续性,即用数组a进行储存1和0,若a[i]1则进行下一个循环,若a[i]!=1即a[i]0则跳出循环,与此同时进行两边同时判断1的连续性函数,即从开始a[0]判断1连续的个数,若a[i]==0则结束循环进行从后向前判断a[n-1]是否等于零,判断出前后连续1的个数则进行相加即代码中的res1+res2,最后用最大值max和res1+res2比较大小,最后输出最大的那一项。

  • 相关阅读:
    Java引用总结--StrongReference、SoftReference、WeakReference、PhantomReference
    Clustered Index
    Docker:一、开始部署第一个Asp.net应用
    数据库死锁 之 三.死锁解读
    数据库死锁 之 二.定位死锁
    数据库死锁 之 一.啥是死锁
    番外篇
    C# QQ & 163 邮件发送
    asp.net core 四 IOC&DI Autofac
    asp.net core 五 SignalR 负载均衡
  • 原文地址:https://www.cnblogs.com/xiaofengqaq/p/10725995.html
Copyright © 2011-2022 走看看