Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 브루트포스
- 우선순위 큐
- BFS
- 트리
- 그리디 알고리즘
- 문자열
- 구현
- 자료구조
- 재귀
- 누적 합
- 유니온 파인드
- 백준
- 백트래킹
- 수학
- VR
- 시뮬레이션
- Team Fortress 2
- 그래프
- 스택
- c++
- 유니티
- 정렬
- 투 포인터
- ue5
- DFS
- XR Interaction Toolkit
- 다이나믹 프로그래밍
- Unreal Engine 5
- 알고리즘
- 다익스트라
Archives
- Today
- Total
1일1알
백준 2504번 괄호의 값 C++ 본문
스택을 이용해서 풀었는데 풀이법을 생각하는게 좀 까다로웠다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using ll = long long;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
string str;
cin >> str;
stack<char> st;
int ans = 0;
int sum = 1;
for (int i = 0; i < str.length(); i++) {
if (str[i] == '(') {
sum *= 2;
st.push(str[i]);
}
else if (str[i] == ')') {
if (st.empty() || st.top() != '(') {
ans = 0;
break;
}
if (str[i - 1] == '(') {
ans += sum;
}
sum /= 2;
st.pop();
}
else if (str[i] == '[') {
sum *= 3;
st.push(str[i]);
}
else if (str[i] == ']') {
if (st.empty() || st.top() != '[') {
ans = 0;
break;
}
if (str[i - 1] == '[') {
ans += sum;
}
sum /= 3;
st.pop();
}
}
if (!st.empty() || ans == 0) {
cout << 0;
}
else {
cout << ans;
}
};
'알고리즘' 카테고리의 다른 글
백준 2407번 조합 C++ (0) | 2022.06.10 |
---|---|
백준 1043번 거짓말 C++ (0) | 2022.06.09 |
백준 1715번 카드 정렬하기 C++ (0) | 2022.06.07 |
백준 18258번 큐 2 C++ (0) | 2022.06.06 |
백준 1021번 회전하는 큐 C++ (0) | 2022.06.05 |