RUBY

[BOJ]카드 정렬하기 본문

PS/This

[BOJ]카드 정렬하기

RUBY_루비 2020. 8. 12. 21:01

출처:: https://www.acmicpc.net/problem/1715

분류:: 정렬

 

1. 문제 이해 및 해결과정

 - 정렬 시 heap 자료구조를 이용하면 된다

 - 작은 것 두개 빼서 합쳐서 집어넣고 

 

2. 풀이방법

  1.정렬

#카드 정렬하기
#https://www.acmicpc.net/problem/1715
import heapq
import sys
sys.stdin = open("input.txt","r")

n=int(input())
heap=[]
for i in range(n):
    tmp=int(input())
    heapq.heappush(heap,tmp)

total=0
#힙에 원소 한 개 남을 때까지
while len(heap) !=1:
    print(heap)
    #가장 작은 2개의 묶음 꺼내기
    one=heapq.heappop(heap)
    two=heapq.heappop(heap)
    #카드 묶음을 합쳐서 다시 삽입
    sum=one+two
    total+=sum
    heapq.heappush(heap,sum)

print(total)

3. 오답원인

 

4. 알게된 점

 

'PS > This' 카테고리의 다른 글

고정점 찾기  (0) 2020.08.13
[이론] 다이나믹 프로그래밍  (0) 2020.08.13
[Kakao] 실패율  (0) 2020.08.12
국영수  (0) 2020.08.12
[삼성] 연산자 끼워넣기  (0) 2020.08.12
Comments