[BaekJoon] 백준 1927번 최소 힙
문제: https://www.acmicpc.net/problem/1927
내코드
우선 순위큐에서 힙을 이용해 푸는 문제다.
파이썬에는 힙 모듈이 있어 이를 이용해서 풀었다.
# BaekJoon1927.py
import sys
import heapq
input = sys.stdin.readline
number = int(input())
heap = []
for _ in range(number):
num = int(input())
if num != 0:
heapq.heappush(heap, num)
else:
try:
print(heapq.heappop(heap))
except:
print(0)
728x90
반응형
'CS > Algorithm 문제' 카테고리의 다른 글
[BaekJoon] 백준 17626번 Four Squares (0) | 2021.07.17 |
---|---|
[BaekJoon] 백준 1931번 회의실 배정 (0) | 2021.07.16 |
[BaekJoon] 백준 11659번 구간 합 구하기 4 (0) | 2021.07.16 |
[BaekJoon] 백준 1992번 쿼드트리 (0) | 2021.07.16 |
[BaekJoon] 백준 1541번 잃어버린 괄호 (0) | 2021.07.13 |