Problem Solving/BOJ

BOJ 1927. 최소 힙 (Python)

yuseon-Lim 2021. 2. 23. 01:35

BOJ 1927. 최소 힙

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

 

1927번: 최소 힙

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

www.acmicpc.net

풀이

heapq를 이용해서 풀었다. 주의할 점 두가지는,

  1. python3로 제출할 경우 시간초과, pypy3로 제출
  2. input()으로 할 시 시간초과, sys.stdin.readline().rstrip()로 할 것

소스코드

import heapq
from sys import stdin

N = int(stdin.readline().rstrip())
heap = []

for _ in range(N):
    command = int(stdin.readline().rstrip())

    if command == 0:
        if len(heap) == 0:
            print(0)
        else:
            print(heapq.heappop(heap))
    else:
        heapq.heappush(heap, command)

반응형