BOJ11279 최대힙
파이썬의 heapq는 최소힙이기 때문에 값을 -로 치환해주면 최대힙으로 이용할 수 있다.
import heapq
import sys
input = sys.stdin.readline
N = int(input())
hq = []
for i in range(N):
n = int(input())
if n == 0:
if not hq:
print(0)
else:
print(-1*heapq.heappop(hq))
else:
heapq.heappush(hq, -1*n)
Author And Source
이 문제에 관하여(BOJ11279 최대힙), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@randi65535/BOJ11279저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)