P1420 最长连号

P1420 最长连号


#include<bits/stdc++.h>
#include<algorithm>
#include<iostream>
#include<stdio.h>
using namespace std;
const int N=1e9;
int main()
{
    int n;
    cin>>n;
    int cnt=1;
    int maxx=0;
    int d;
    cin>>d;
    int j;

    for(int i=2; i<=n; i++)
    {
        cin>>j;

        if(j==d+1)
        {
            cnt++;
        }
        else
        {
            cnt=1;
        }

        if(cnt>maxx) maxx=cnt;
        d=j;
    }
    cout<<maxx<<endl;

    return 0;

}

上一篇:最大子序和


下一篇:【优化求解】遗传优化隶属度函数matlab源码