-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBOJ_11723.cpp
More file actions
62 lines (56 loc) · 911 Bytes
/
BOJ_11723.cpp
File metadata and controls
62 lines (56 loc) · 911 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
//21 09 29
#include <iostream>
#include <string>
using namespace std;
int s = 0;
void do_order(string order)
{
if (order == "add")
{
int x;
cin >> x;
s |= (1<<x);
}
else if (order == "remove")
{
int x;
cin >> x;
s &= (~(1<<x));
}
else if (order == "check")
{
int x;
cin >> x;
if (s&(1<<x))
cout<<"1\n";
else
cout<<"0\n";
}
else if (order == "toggle")
{
int x;
cin>> x;
if (s&(1<<x))
s &= (~(1<<x));
else
s |= (1<<x);
}
else if (order == "all")
s = (1<<21)-1;
else
s = 0;
}
int main(void)
{
ios_base::sync_with_stdio(0);
cin.tie(0);
int m;
cin>>m;
while (m--)
{
string order;
cin>>order;
do_order(order);
}
return 0;
}