DevYoon
[๋ฐฑ์ค] 5397. ํค๋ก๊ฑฐ (Python) ๋ณธ๋ฌธ
link ๐ https://www.acmicpc.net/problem/5397
๐ฌ > ์ <, -, ๋ฌธ์์ผ ๊ฒฝ์ฐ๋ฅผ ๊ฐ๊ฐ ์๊ฐํด์ ํ์ด์ฃผ์๋ค.
๐ฌ >์ ๊ฒฝ์ฐ idx๊ฐ ๋์ด ์๋ ๊ณณ์ ์์ ๋๋ง ์์ง์ฌ์ค๋ค.
๐ฌ <์ ๊ฒฝ์ฐ idx๊ฐ ์ฒ์์ด ์๋ ๊ณณ์ ์์ ๋๋ง ์์ง์ฌ์ค๋ค.
๐ฌ -์ ๊ฒฝ์ฐ ๋ฌธ์๊ฐ ์๊ณ , idx๊ฐ 0์ด ์๋ ๋๋ง ์คํํ๋ค.
from collections import deque
T = int(input())
for _ in range(T):
sentence = input()
idx = 0
result = deque()
for word in sentence:
if word == '<':
if idx > 0:
idx -= 1
elif word == '>':
if idx < len(result):
idx += 1
elif word == '-':
if result and idx > 0:
del result[idx-1]
idx -= 1
else:
result.insert(idx, word)
idx += 1
print("".join(result))