문제
https://www.acmicpc.net/problem/10866
풀이
from collections import deque
import sys
input=sys.stdin.readline
n = int(input())
q = deque([])
for _ in range(n):
arr = input().split()
if arr[0]=="push_front": q.appendleft(int(arr[1]))
elif arr[0]=="push_back" : q.append(int(arr[1]))
elif arr[0]=="pop_front" : print(q.popleft()) if q else print(-1)
elif arr[0]=="pop_back" : print(q.pop()) if q else print(-1)
elif arr[0]=="size" : print(len(q))
elif arr[0]=="empty" : print(0) if q else print(1)
elif arr[0]=="front" : print(q[0]) if q else print(-1)
elif arr[0]=="back" : print(q[-1]) if q else print(-1)
deque를 사용하면된다.
'코딩테스트 > Python' 카테고리의 다른 글
[Python] 백준 #1157 - 단어 공부 (1) | 2021.12.08 |
---|---|
[Python] 백준 #2675 - 문자열 반복 (1) | 2021.12.08 |
[Python] 백준 #11866 - 요세푸스 문제 0 (1) | 2021.12.07 |
[Python] 백준 #2164 - 카드2 (1) | 2021.12.07 |
[Python] 백준 #18258 - 큐 2 (1) | 2021.12.07 |