https://www.acmicpc.net/problem/11723

 

11723번: 집합

첫째 줄에 수행해야 하는 연산의 수 M (1 ≤ M ≤ 3,000,000)이 주어진다. 둘째 줄부터 M개의 줄에 수행해야 하는 연산이 한 줄에 하나씩 주어진다.

www.acmicpc.net

비트마스크를 연습해보는 문제이다.

 

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
#include <iostream>
#include <string>
using namespace std;
 
int m;
int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
 
    cin >> m;
 
    int n = 20;
    int s = 0;
    int x;
    string command;
 
    while (m-- > 0) {
        
        
        cin >> command;
        //연산이 all이나 empty이 아닐때만 x를 입력받는다.
        if (command != "all" && command != "empty") {
            cin >> x;
            x--;
        }
        
 
        if (command == "add") {
            s = s | (1 << x);
        }
        else if (command == "remove") {
            s = s & ~(1 << x);
        }
        else if (command == "check") {
            if ((s & (1 << x)) == 0) {
                cout << 0 << '\n';
            }
            else {
                cout << 1 << '\n';
            }
        }
        else if (command == "toggle") {
            s = s ^ (1 << x);
        }
        else if (command == "all") {
            s = (1 << n ) - 1;
        }
        else if (command == "empty") {
 
            s = 0;
            
        }
        
    }
 
    return 0;
}
Colored by Color Scripter
 

'BOJ' 카테고리의 다른 글

[BOJ] 14391. 종이 조각  (0) 2019.07.11
[BOJ] 1182. 부분수열의 합  (0) 2019.07.11
[BOJ] 1987. 알파벳  (0) 2019.07.11
[BOJ] 7562. 나이트의 이동  (0) 2019.07.09
[BOJ] 2638. 치즈  (0) 2019.07.08

+ Recent posts