728x90
https://www.acmicpc.net/problem/1927
💡 문제 풀이
최소 힙 문제이다.
라이브러리를 불러와서 사용하면 된다.
✔️ 느낀 점
💻 코드
import heapq, sys
input = sys.stdin.readline
n = int(input())
q = []
for _ in range(n):
tmp = int(input())
if not tmp:
if not q: print(0)
else: print(heapq.heappop(q))
else:
heapq.heappush(q, tmp)
'문제 풀이 > 백준(BOJ)' 카테고리의 다른 글
[Python] 백준 2293번 : 동전 1 (0) | 2022.07.18 |
---|---|
[Python] 백준 7576번 : 토마토 (0) | 2022.07.17 |
[Python] 백준 12100번 : 2048 (Easy) (0) | 2022.07.16 |
[Python] 백준 1068번 : 트리 (0) | 2022.07.15 |
[Python] 백준 1987번 : 알파벳 (0) | 2022.07.14 |
댓글