-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathAKVOD05.cpp
80 lines (73 loc) · 1.56 KB
/
AKVOD05.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
//
// main.cpp
// Dolphin
//
// Created by Mahmud on 15/07/17.
// Copyright © 2017 Mahmud. All rights reserved.
//
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <cstring>
#include <numeric>
#include <algorithm>
#include <functional>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <unordered_map>
#include <unordered_set>
#include <bitset>
#include <utility>
#include <cassert>
#include <iomanip>
#include <ctime>
#include <sstream>
#include <istream>
using namespace std;
const int me = 200025;
int T, N, K;
int a[me];
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cin >> T;
while(T --){
cin >> N >> K;
for(int i = 1; i <= K; i ++){
cin >> a[i];
}
N -= K;
N %= (K + 1);
if(N == 0){
N = K + 1;
}
N += K;
set<int> notactive;
map<int, int> counts;
for(int i = 0; i < me; i ++){
notactive.insert(i);
}
for(int i = 1; i <= K; i ++){
if(notactive.count(a[i])){
notactive.erase(a[i]);
}
counts[a[i]] ++;
}
for(int i = K + 1; i <= N; i ++){
a[i] = *notactive.begin();
counts[a[i - K]] --;
if(counts[a[i - K]] == 0){
notactive.insert(a[i - K]);
}
counts[a[i]] ++;
if(notactive.count(a[i])){
notactive.erase(a[i]);
}
}
cout << a[N] << endl;
}
return 0;
}