집합1 [BOJ]11723번: 집합 (c++) https://www.acmicpc.net/problem/11723 11723번: 집합첫째 줄에 수행해야 하는 연산의 수 M (1 ≤ M ≤ 3,000,000)이 주어진다. 둘째 줄부터 M개의 줄에 수행해야 하는 연산이 한 줄에 하나씩 주어진다.www.acmicpc.net #include using namespace std;int main(){ ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); const int MAX = 20; int M, S = 0; cin >> M; while (M--) { string cmd; int x; cin >> cmd; // x를 추가 if (cmd == "add") { cin >> x; S |= (1 > x.. 2020. 5. 22. 이전 1 다음