y总教的算法和代码太优美了,像诗一样
#include <iostream>
using namespace std;
const int N = 100010;
int a[N], s[N];
int main()
{
int n, res = 0;
cin >> n;
for(int i = 0; i < n; i ++ ) cin >> a[i];
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);
}
printf("%d", res);
return 0;
}