본문 바로가기
문제 풀이/백준(BOJ)

[Python] 백준 1927번 : 최소 힙

by 희조당 2022. 7. 16.
728x90

https://www.acmicpc.net/problem/1927

 

1927번: 최소 힙

첫째 줄에 연산의 개수 N(1 ≤ N ≤ 100,000)이 주어진다. 다음 N개의 줄에는 연산에 대한 정보를 나타내는 정수 x가 주어진다. 만약 x가 자연수라면 배열에 x라는 값을 넣는(추가하는) 연산이고, x가 0

www.acmicpc.net


💡 문제 풀이

최소 힙 문제이다.

 

라이브러리를 불러와서 사용하면 된다.

✔️ 느낀 점

💻 코드

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)

댓글