<내 코드>
import heapq
from sys import stdin
N = int(stdin.readline())
heap = []
for i in range(N):
num = int(stdin.readline())
if num == 0:
if heap:
print(heapq.heappop(heap)[1])
else:
print(0)
else:
heapq.heappush(heap, [num, num])
반응형
'알고리즘 문제풀기 > 백준 - Python' 카테고리의 다른 글
[백준 1261] 알고스팟 - Python (우선순위 큐, BFS) (0) | 2020.10.24 |
---|---|
[백준 11286] 절댓값 힙 - Python (우선순위 큐, 힙) (0) | 2020.10.23 |
[백준 11279] 최대 힙 - Python ( 우선순위 큐, 힙) (0) | 2020.10.23 |
[백준 10973] 이전 순열 - Python (순열) (0) | 2020.10.22 |
[백준 1476] 날짜 계산 - Python (브루트포스) (0) | 2020.10.22 |