-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1918.py
79 lines (62 loc) · 2.01 KB
/
1918.py
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# [ 백준 ] 1918번: 후위 표기식
def solution() -> None:
equation: str = input()
answer: str = ""
stack: list[str] = []
operators: dict[str, int] = { "(": 0, "+": 1, "-": 1, "*": 2, "/": 2 }
for expression in equation:
if expression == "(":
stack.append(expression)
elif expression == ")":
while stack:
operator: str = stack.pop()
if operator == "(":
break
else:
answer += operator
elif expression in operators:
while stack:
operator: str = stack.pop()
if operators[operator] >= operators[expression]:
answer += operator
else:
stack.append(operator)
break
stack.append(expression)
else:
answer += expression
while stack:
answer += stack.pop()
print(answer)
if __name__ == "__main__":
from io import StringIO
from unittest.mock import patch
def test_example_case(input: list[str]) -> str:
with patch("builtins.input", side_effect=input):
with patch("sys.stdout", new_callable=StringIO) as test_stdout:
solution()
return test_stdout.getvalue()
cases: list[dict[str, list[str] | str]] = [
{
"input": ["A*(B+C)"],
"output": "ABC+*\n"
},
{
"input": ["A+B"],
"output": "AB+\n"
},
{
"input": ["A+B*C"],
"output": "ABC*+\n"
},
{
"input": ["A+B*C-D/E"],
"output": "ABC*+DE/-\n"
},
{
"input": ["(A+((B+C*D)+E))"],
"output": "ABCD*+E++\n"
},
]
for case in cases:
assert case["output"] == test_example_case(input=case["input"])