BOJ 백준 28279 덱 2 풀어보기 [Python]
·
알고리즘/백준
https://www.acmicpc.net/problem/28279 28279번: 덱 2첫째 줄에 명령의 수 N이 주어진다. (1 ≤ N ≤ 1,000,000) 둘째 줄부터 N개 줄에 명령이 하나씩 주어진다. 출력을 요구하는 명령은 하나 이상 주어진다.www.acmicpc.net 실버 4 구현 + 시간초과 문제이다 deque를 사용하면 간단(?) 하지만 어렵지 않게 풀 수 있다.import sys from collections import deque q = deque() N = int(input()) for i in range(N): A = list(sys.stdin.readline().split()) if A[0] == '1': q.appendleft(int(A[1])) if A[0] == '2': q..