最长连续不重复子序列 C++实现

#include
using namespace std;
const int N=100010;
int q[N],s[N];
int n;
int main(){
    scanf("%d",&n);
    for(int i=0;i1){
            s[q[j]]--;
            j++;
        }
        res=max(res,i-j+1);
    }
    printf("%d",res);
}

你可能感兴趣的:(c++,算法,数据结构)