boj32 (BOJ) 10799 #include using namespace std; stack S; int main(void) { ios::sync_with_stdio(0); cin.tie(0); string input; int sum = 0; cin >> input; for (int i=0;i 2022. 2. 2. (BOJ) 4949 풀이 #include using namespace std; int main() { ios::sync_with_stdio(0);cin.tie(0); string input; while (true) { stack S; int flag = 0; getline(cin, input); if (input == ".") break; for (auto &c : input) { if (c == '(' or c == '[') S.push(c); else if (c == ')') { if (!S.empty() && S.top() == '(') { S.pop(); } else { flag = 1; } } else if (c == ']') { if (!S.empty() && S.top() == '[') { S.pop(); } els.. 2022. 2. 2. (BOJ) 1021 풀이 #include using namespace std; deque DQ; int main(void){ ios::sync_with_stdio(0); cin.tie(0); int N,M,ans=0; cin >> N >> M; for(int i=1;i n; int idx=find(DQ.begin(),DQ.end(),n)-DQ.begin(); // cout 2022. 1. 30. (BOJ) 2164 풀이 #include using namespace std; queue q; int main(void){ ios::sync_with_stdio(0); cin.tie(0); int N; cin >> N; for(int i=1;i 2022. 1. 30. 이전 1 2 3 4 5 6 7 8 다음