[Baekjoon] 1927. 최소 힙 [S2]
📚 문제
https://www.acmicpc.net/problem/1927
파이썬의 힙 자료구조 문제
내장된 heapq를 사용한다.
최댓값, 최솟값 연산을 빠르게 하기 위한 완전이진트리이다.
heapq는 최소 힙으로 구성
heapq.heappush(heap, item) : item을 heap에 추가
heapq.heappop(heap) : heap의 최소값을 pop, 없으면 error
heapq.heapify(list) : list를 heap으로 변환
📒 코드
import heapq, sys
n = int(input())
heap = []
for i in range(n):
x = int(sys.stdin.readline().rstrip())
if x:
heapq.heappush(heap, x)
else:
if heap:
print(heapq.heappop(heap))
else:
print(0)
🔍 결과
Author And Source
이 문제에 관하여([Baekjoon] 1927. 최소 힙 [S2]), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@yunhlim/Baekjoon-1927.-최소-힙-S2저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)