-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path210222_BOJ_2531.cpp
More file actions
80 lines (61 loc) · 1002 Bytes
/
Copy path210222_BOJ_2531.cpp
File metadata and controls
80 lines (61 loc) · 1002 Bytes
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
#include <iostream>
#include <vector>
#include <map>
using namespace std;
int N = 0;
int d = 0;
int k = 0;
int c = 0;
map<int, int> user;
void removeSushi(int sushi) {
auto it = user.find(sushi);
if (it == user.end()) {
return;
}
else {
user[sushi]--;
if (user[sushi] == 0)
user.erase(sushi);
}
}
void insertSushi(int sushi) {
user[sushi]++;
}
int isIn() {
auto it = user.find(c);
if (it == user.end())
return 1;
else
return 0;
}
int main() {
cin >> N >> d >> k >> c;
vector<int> velt(N, 0);
for (int i = 0; i < N; ++i) {
cin >> velt[i];
}
int a = 0, b = 0;
for (; b < k; ++b) {
auto it = user.find(velt[b]);
if (it == user.end()) {
user[velt[b]] = 1;
}
else {
user[velt[b]]++;
}
}
b--;
int Max = user.size();
Max += isIn();
while (a <= N - 1) {
removeSushi( velt[a % N] );
a++; b++;
insertSushi( velt[b % N] );
int temp = user.size();
temp += isIn();
if (temp > Max)
Max = temp;
}
cout << Max << "\n";
return 0;
}