티스토리 뷰

1406. 에디터

한 줄로 된 간단한 에디터를 구현하려고 한다. 이 편집기는 영어 소문자만을 기록할 수 있는 편집기로, 최대 600,000글자까지 입력할 수 있다. 이 편집기에는 '커서'라는 것이 있는데, 커서는 문장의 맨 앞(첫 번째 문자의 왼쪽), 문장의 맨 뒤(마지막 문자의 오른쪽), 또는 문장 중간 임의의 곳(모든 연속된 두 문자 사이)에 위치할 수 있다. 즉 길이가 L인 문자열이 현재 편집기에 입력되어 있으면, 커서가 위치할 수 있는 곳은 L+1가지 경우가 있다. 이 편집기가 지원하는 명령어는 다음과 같다.

 

초기에 편집기에 입력되어 있는 문자열이 주어지고, 그 이후 입력한 명령어가 차례로 주어졌을 때, 모든 명령어를 수행하고 난 후 편집기에 입력되어 있는 문자열을 구하는 프로그램을 작성하시오. 단, 명령어가 수행되기 전에 커서는 문장의 맨 뒤에 위치하고 있다고 한다.

 

 

입력. 

첫째 줄에는 초기에 편집기에 입력되어 있는 문자열이 주어진다. 이 문자열은 길이가 N이고, 영어 소문자로만 이루어져 있으며, 길이는 100,000을 넘지 않는다. 둘째 줄에는 입력할 명령어의 개수를 나타내는 정수 M(1 ≤ M ≤ 500,000)이 주어진다. 셋째 줄부터 M개의 줄에 걸쳐 입력할 명령어가 순서대로 주어진다. 명령어는 위의 네 가지 중 하나의 형태로만 주어진다.

 

출력. 

첫째 줄에 모든 명령어를 수행하고 난 후 편집기에 입력되어 있는 문자열을 출력한다.

 

 

Python

import sys

left = list(sys.stdin.readline().rstrip())
right = list()

n = int(sys.stdin.readline().rstrip())
commands = []

for i in range(n):
    command = sys.stdin.readline().rstrip()

    try :
        if "L" in command :
            right.append(left.pop())
        elif "D" in command:
            left.append(right.pop())
        elif "B" in command:
            left.pop()
        elif "P" in command:
            left.append(command.split()[1])
    except:
        pass

print("".join(left+right[::-1]))

 

Java

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.EmptyStackException;
import java.util.Stack;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

        Stack<Character> left = new Stack<>();
        Stack<Character> right = new Stack<>();

        char[] str = br.readLine().toCharArray();
		for(char s : str) {
			left.push(s);
		}

        int n = Integer.parseInt(br.readLine());

        for(int i = 0; i < n ; i++){
            String command = br.readLine();
            try {
				if(command.contains("L")) {
					right.push(left.pop());
				}else if(command.contains("D")) {
					left.push(right.pop());
				}else if(command.contains("B")) {
					left.pop();
				}else if(command.contains("P")) {
					left.push(command.charAt(command.length()-1));
				}
            } catch (EmptyStackException e) {
            }
        }


		StringBuffer sb = new StringBuffer();
		while(!left.isEmpty()) {
            right.push(left.pop());
        }
        while(!right.isEmpty()) {
            sb.append(right.pop());
        }

        br.close();
        System.out.println(sb.toString());
    }
}

 

'Computer Science > 백준 알고리즘' 카테고리의 다른 글

[백준.10866] 덱  (0) 2021.12.10
[백준.1158] 요세푸스 문제  (0) 2021.12.10
[백준.1874] 스택 수열  (0) 2021.12.06
[백준.11004 - Python] K번째 수  (0) 2021.12.03
[백준.20291 - Python] 파일 정리  (0) 2021.11.30
댓글
«   2024/12   »
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
최근에 올라온 글
글 보관함
Total
Today
Yesterday