반응형
알고리즘 분류
- 자료 구조
- 우선순위 큐
SOLUTION
import sys
import heapq
N = int(sys.stdin.readline())
heap = []
for _ in range(N):
x = int(sys.stdin.readline())
if x > 0 :
heapq.heappush(heap, x)
elif x == 0:
if heap == []:
print(0)
else:
print(heap[0])
heapq.heappop(heap)
※ heapq 모듈
'코딩테스트 대비 > BOJ' 카테고리의 다른 글
[Baekjoon/Python] 2667번: 단지번호붙이기 - 효과는 굉장했다! (0) | 2021.12.25 |
---|---|
[Baekjoon/Python] 2178번: 미로 탐색 - 효과는 굉장했다! (0) | 2021.12.25 |
[Baekjoon/Python] 1697번: 숨바꼭질 - 효과는 굉장했다! (0) | 2021.12.25 |
[Baekjoon/Python] 1389번: 케빈 베이컨의 6단계 법칙 - 효과는 굉장했다! (0) | 2021.12.25 |
[Baekjoon/Python] 1074번: Z - 효과는 굉장했다! (0) | 2021.12.19 |