말 그대로 절댓값 힙
import sys
input = sys.stdin.readline
from heapq import heappop,heappush
N = int(input())
arr = []
for _ in range(N):
x = int(input())
if x:
heappush(arr,(abs(x),x))
continue
try:
print(heappop(arr)[1])
except:
print(0)
'practivceAlgorithm > 백준' 카테고리의 다른 글
[백준][Python] 11659 구간 합 구하기 4 (0) | 2021.09.13 |
---|---|
[백준][Python] 11403 경로찾기 (0) | 2021.09.13 |
[백준][Python] 11256 사탕 (0) | 2021.09.13 |
[백준][Python] 19542 전단지 돌리기 (0) | 2021.09.13 |
[백준][Python] 21314 민겸수 (0) | 2021.09.13 |