-
Notifications
You must be signed in to change notification settings - Fork 160
/
Copy path1848B-VikaAndTheBridge.cpp
38 lines (30 loc) · 1016 Bytes
/
1848B-VikaAndTheBridge.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#include <cstdio>
#include <vector>
int main(){
long t; scanf("%ld", &t);
while(t--){
long n, k; scanf("%ld %ld", &n, &k);
std::vector<long> last(k + 1, 0);
std::vector<long> first(k + 1, 0);
std::vector<long> second(k + 1, 0);
for(long p = 1; p <= n; p++){
long x; scanf("%ld", &x);
long dist = p - last[x] - 1;
last[x] = p;
if(dist >= first[x]){second[x] = first[x]; first[x] = dist;}
else if(dist >= second[x]){second[x] = dist;}
}
for(long p = 1; p <= k; p++){
long dist = n - last[p];
if(dist >= first[p]){second[p] = first[p]; first[p] = dist;}
else if(dist >= second[p]){second[p] = dist;}
}
long ans(n);
for(long p = 1; p <= k; p++){
long cur = second[p];
if(cur <= first[p] / 2){cur = first[p] / 2;}
ans = (ans < cur) ? ans : cur;
}
printf("%ld\n", ans);
}
}