Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- PYTHON
- AI 경진대회
- 프로그래머스
- github
- 자연어처리
- 코로나19
- Real or Not? NLP with Disaster Tweets
- 편스토랑
- ChatGPT
- 더현대서울 맛집
- hackerrank
- Baekjoon
- Kaggle
- SW Expert Academy
- 맥북
- 캐치카페
- dacon
- gs25
- 백준
- 데이콘
- ubuntu
- 금융문자분석경진대회
- Docker
- 우분투
- 프로그래머스 파이썬
- 파이썬
- Git
- leetcode
- programmers
- 편스토랑 우승상품
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 1406번 : 에디터 (Python) 본문
728x90
반응형

1일 1문제 92일차!
오늘의 문제는 백준의 에디터 입니다.
1406번: 에디터
문제 한 줄로 된 간단한 에디터를 구현하려고 한다. 이 편집기는 영어 소문자만을 기록할 수 있는 편집기로, 최대 600,000글자까지 입력할 수 있다. 이 편집기에는 '커서'라는 것이 있는데, 커서는 문장의 맨 앞(첫 번째 문자의 왼쪽), 문장의 맨 뒤(마지막 문자의 오른쪽), 또는 문장 중간 임의의 곳(모든 연속된 두 문자 사이)에 위치할 수 있다. 즉 길이가 L인 문자열이 현재 편집기에 입력되어 있으면, 커서가 위치할 수 있는 곳은 L+1가지 경우가
www.acmicpc.net
Solution
import sys
from collections import deque
class Editor:
def __init__(self, input_text):
self.left_deque = deque(input_text)
self.right_deque = deque()
def move_cursor_left(self):
if self.left_deque:
self.right_deque.appendleft(self.left_deque.pop())
def move_cursor_right(self):
if self.right_deque:
self.left_deque.append(self.right_deque.popleft())
def delete_left_character(self):
if self.left_deque:
self.left_deque.pop()
def add_character_to_left(self, character2add):
self.left_deque.append(character2add)
editor = Editor(sys.stdin.readline().strip())
N = int(sys.stdin.readline().strip())
while N:
command = sys.stdin.readline().strip()
if command[0] == 'L':
editor.move_cursor_left()
elif command[0] == 'D':
editor.move_cursor_right()
elif command[0] == 'B':
editor.delete_left_character()
else:
editor.add_character_to_left(command[2])
N -= 1
print(''.join(editor.left_deque) + ''.join(editor.right_deque))
SOMJANG/CODINGTEST_PRACTICE
1일 1문제 since 2020.02.07. Contribute to SOMJANG/CODINGTEST_PRACTICE development by creating an account on GitHub.
github.com
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 11053번 : 가장 긴 증가하는 부분수열 (Python) (0) | 2020.05.10 |
---|---|
[BaekJoon] 11655번 : ROT13 (Python) (0) | 2020.05.09 |
[BaekJoon] 9012번 : 괄호 (Python) (0) | 2020.05.08 |
[BaekJoon] 9613번 : GCD 합 (Python) (0) | 2020.05.06 |
[BaekJoon] 10824번 : 네 수 (Python) (0) | 2020.05.05 |