-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path11723.cpp
48 lines (44 loc) · 1.02 KB
/
11723.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
//
// Created by kdongha on 2019/11/26.
//
#include <bits/stdc++.h>
int M, n;
bool set[21];
std::string s;
void solve() {
std::cin >> M;
while (M--) {
std::cin >> s;
if (s == "all") {
for (int i = 1; i <= 20; i++) {
set[i] = true;
}
} else if (s == "empty") {
for (int i = 1; i <= 20; i++) {
set[i] = false;
}
} else {
std::cin >> n;
if (s == "add") {
set[n] = true;
} else if (s == "check") {
if (set[n]) {
std::cout << "1" << "\n";
} else {
std::cout << "0" << "\n";
}
} else if (s == "remove") {
set[n] = false;
} else if (s == "toggle") {
set[n] = !set[n];
}
}
}
}
int main() {
std::ios::sync_with_stdio(false);
std::cin.tie(NULL);
std::cout.tie(NULL);
solve();
return 0;
}