码迷,mamicode.com
首页 > Windows程序 > 详细

AcWing 799. 最长连续不重复子序列

时间:2020-07-28 14:21:52      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:std   ons   res   clu   子序列   name   end   its   wing   

AcWing 799. 最长连续不重复子序列


#include <bits/stdc++.h>
using namespace std;
const int N=1e6+10;
int a[N],s[N];
int main(){
    int n;
    cin>>n;
    for(int i=0;i<n;i++) cin>>a[i];
    int res=0;
    for(int i=0,j=0;i<n;i++){
        s[a[i]]++;
        while(s[a[i]]>1){
            s[a[j]]--;
            j++;
        }
        res=max(res,i-j+1);
    }
    cout<<res<<endl;
    return 0;
}

AcWing 799. 最长连续不重复子序列

标签:std   ons   res   clu   子序列   name   end   its   wing   

原文地址:https://www.cnblogs.com/wiseXu/p/13390439.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!