728x90
반응형
https://www.acmicpc.net/problem/11279
최소 힙 풀었더니 옆에 연관문제라고 떠서 봤는데 날로 먹는 최대 힙 문제였다ㅎㅎ
행복하게 - 두개 붙이고 통과
import heapq
import sys
input = sys.stdin.readline
n = int(input())
hq = []
for i in range(n):
m = int(input())
if m:
heapq.heappush(hq, -m)
else:
if hq:
pop = heapq.heappop(hq)
print(-pop)
else:
print(0)
완성
728x90
반응형
'알고리즘' 카테고리의 다른 글
재귀, DFS (0) | 2024.04.06 |
---|---|
[백준] 2920번: 음계 - python (0) | 2024.04.05 |
[백준] 1927번: 최소 힙 - python (0) | 2024.04.05 |
[백준] 11724번: 연결 요소의 개수 - python (0) | 2024.04.05 |
[백준] 5347번: LCM - python (0) | 2024.04.04 |