목록11286 (1)
컴공생의 다이어리
[파이썬, Python] 백준 11286번 : 절댓값 힙
백준 11286번 : 절댓값 힙 (문제 바로가기) 내 코드 import heapq, sys n = int(input()) heap = [] for _ in range(n): num = int(sys.stdin.readline()) if num == 0: if heap: print(heapq.heappop(heap)[1]) else: print(0) else: heapq.heappush(heap, (abs(num), num))
Development/Algorithm & Coding Test
2022. 5. 15. 00:01