쏘ing
[Python] 백준 11286 절댓값 힙 본문
https://www.acmicpc.net/problem/11286
풀이
import heapq
import sys
num = int(sys.stdin.readline().rstrip())
num_list = []
for _ in range (num):
temp = int(sys.stdin.readline().rstrip())
# 0일 때 list가 비어있으면 0출력
if temp == 0:
if len(num_list) == 0:
print(0)
# 절댓값이 가장 작은 값 출력
else:
print(heapq.heappop(num_list)[1])
# 절댓값 작은 순으로 넣기
else:
heapq.heappush(num_list, (abs(temp), temp))
'알고리즘 > CLASS 3' 카테고리의 다른 글
[Python] 백준 1260 DFS와 BFS (0) | 2022.02.26 |
---|---|
[Python] 백준 11726 2 x n 타일링 (0) | 2022.02.26 |
[Python] 백준 1927 최소 힙 (0) | 2022.02.22 |
[Python] 백준 9461 파도반 수열 (0) | 2022.02.21 |
[Python] 백준 1003 피보나치 함수 (0) | 2022.02.21 |
Comments