1일1알

백준 1918번 후위 표기식 C++ 본문

알고리즘

백준 1918번 후위 표기식 C++

영춘권의달인 2022. 6. 21. 11:15

출처 : https://www.acmicpc.net/problem/1918

 

#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 int64 = long long;

enum {
	OPERAND,
	OPERATOR
};

int GetType(char c) {
	if (c >= 'A' && c <= 'Z')
		return OPERAND;
	return OPERATOR;
}

int main() {
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	cout.tie(NULL);

	string str;
	cin >> str;
	stack<char> st;
	for (int i = 0; i < str.length(); i++) {
		if (GetType(str[i]) == OPERAND) {
			cout << str[i];
			continue;
		}
		if (str[i] == '(') {
			st.push(str[i]);
			continue;
		}
		if (str[i] == ')') {
			while (st.top() != '(') {
				cout << st.top();
				st.pop();
			}
			st.pop();
			continue;
		}
		if (str[i] == '+' || str[i] == '-') {
			if (st.empty() || st.top() == '(') {
				st.push(str[i]);
				continue;
			}
			cout << st.top();
			st.pop();
			if (!st.empty() && (st.top() == '+' || st.top() == '-')) {
				cout << st.top();
				st.pop();
			}
			st.push(str[i]);
			continue;
		}
		if (str[i] == '*' || str[i] == '/') {
			if (st.empty() || st.top() == '(') {
				st.push(str[i]);
				continue;
			}
			if (st.top() == '*' || st.top() == '/') {
				cout << st.top();
				st.pop();
			}
			st.push(str[i]);
		}
	}
	while (!st.empty()) {
		cout << st.top();
		st.pop();
	}
};

'알고리즘' 카테고리의 다른 글

백준 14938번 서강그라운드 C++  (0) 2022.06.25
백준 2263번 트리의 순회 C++  (0) 2022.06.22
백준 1167 트리의 지름 C++  (0) 2022.06.20
백준 1865번 웜홀 C++  (0) 2022.06.19
백준 11404번 플로이드 C++  (0) 2022.06.18