https://www.acmicpc.net/problem/1715
>>문제 포인트(자료구조)
: 작은 값부터 출력이 가능하도록 최소힙 사용
: 계산기 예제처럼 최소1+ 최소2를 더해주고 더한값을 다시 push
: result값 출력
from heapq import heappush, heappop
heap=[]
n= int(input())
for _ in range(n):
heappush(heap,int(input()))
result=0
while(heap):
if len(heap)<2:
break
a= heappop(heap)
b= heappop(heap)
result+=(a+b)
heappush(heap, (a+b))
print(result)
'백준 문풀' 카테고리의 다른 글
[Python] 위상정렬 - 14676. 영우는 사기꾼?(골3) (0) | 2023.08.03 |
---|---|
[Python] 그리디- 1946. 신입사원 (0) | 2023.08.02 |
[Python] 자료구조 - 25192. 인사성 바른 곰곰이 (실4) (0) | 2023.07.31 |
[Python] 그리디-14916. 거스름돈 (실5) (0) | 2023.07.30 |
[Python] 위상정렬 - 14567. 선수과목 (골5) (0) | 2023.07.30 |