ps | |
---|---|
링크 | acmicpc.net/… |
출처 | BOJ |
문제 번호 | 1406 |
문제명 | 에디터 |
레벨 | 실버 2 |
분류 |
스택 |
시간복잡도 | O(n+m) |
인풋사이즈 | n<=100,000, m<=500,000 |
사용한 언어 | Python |
제출기록 | 37160KB / 328ms |
최고기록 | 208ms |
해결날짜 | 2022/04/29 |
태그 |
"""Solution code for "BOJ 1406. 에디터".
- Problem link: https://www.acmicpc.net/problem/1406
- Solution link: http://www.teferi.net/ps/problems/boj/1406
"""
import sys
def main():
text= sys.stdin.readline().rstrip()
M = int(sys.stdin.readline())
left = list(text)
right = []
for _ in range(M):
match sys.stdin.readline().split():
case ['L']:
if left:
right.append(left.pop())
case ['D']:
if right:
left.append(right.pop())
case ['B']:
if left:
left.pop()
case ['P', ch]:
left.append(ch)
print(''.join(left) + ''.join(reversed(right)))
if __name__ == '__main__':
main()