목차

에디터

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()