标签:唯一的雪花
“滑动窗口”和上篇博客中介绍的“等价转换”一样也为一种算法优化的思想。同样,下面通过一个例子,来介绍这种思想。#include<cstdio>
#include<set>
#include<algorithm>
using namespace std;
const int maxn=1000000+5;
int A[maxn];
int main()
{
int T,n;
scanf("%d",&T);
while(T--){
scanf("%d",&n);
for(int i=0;i<n;i++) scanf("%d",&A[i]);
set<int> s;
int L=0,R=0,ans=0;
while(R<n){
while(R<n&&!s.count(A[R])) s.insert(A[R++]);
ans=max(ans,R-L);
s.erase(A[L++]);
}
printf("%d\n",ans);
}
return 0;
}
同时,此题用C++的STL中的set,实现了这一过程。
标签:唯一的雪花
原文地址:http://blog.51cto.com/13642075/2088761