비트마스크1 cpp) 백준 11723: 집합 Problemhttps://www.acmicpc.net/problem/11723 11723번: 집합첫째 줄에 수행해야 하는 연산의 수 M (1 ≤ M ≤ 3,000,000)이 주어진다. 둘째 줄부터 M개의 줄에 수행해야 하는 연산이 한 줄에 하나씩 주어진다.www.acmicpc.net Solution#include #include #include using namespace std; int n; // 연산의 수 int x; // 주어지는 수 int arr[21]; // 공집합 S string str=""; // 명령어 int main(){ ios::sync_with_stdio(false); cin.tie(0);cout.tie(0); cin >> n; for(int i=0;i> str; if(str=="a.. 2023. 7. 1. 이전 1 다음