forked from DionysiosB/CodeForces
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1417C-kAmazingNumbers.cpp
37 lines (32 loc) · 961 Bytes
/
1417C-kAmazingNumbers.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
#include <cstdio>
#include <vector>
#include <map>
int main(){
long t; scanf("%ld", &t);
while(t--){
long n; scanf("%ld", &n);
std::map<long, std::vector<long> > pos;
for(long p = 0; p < n; p++){
long x; scanf("%ld", &x);
pos[x].push_back(p);
}
long idx(n + 1);
std::vector<long> res(n + 1, -1);
for(long a = 1; a <= n; a++){
if(!pos.count(a)){continue;}
std::vector<long> cur = pos[a];
cur.push_back(n);
long prev(-1), mx(0);
for(long p = 0; p < cur.size(); p++){
long dist = cur[p] - prev;
mx = (mx > dist) ? mx : dist;
prev = cur[p];
}
for(long p = mx; p < idx; p++){res[p] = a;}
idx = (idx < mx) ? idx : mx;
}
for(long p = 1; p <= n; p++){printf("%ld ", res[p]);}
puts("");
}
return 0;
}