일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- divmod
- Zip
- Combinations
- heapq
- 다익스트라
- backjoon
- DateTime
- lambda
- Re
- 재귀함수
- 자바
- python
- 카카오
- 백준
- KAKAO BLIND RECRUITMENT
- BFS
- 수학
- 이분탐색
- Set
- 정규식
- 프로그래머스
- 추석맞이 코딩챌린지
- java
- 파이썬
- dfs
- programmers
- 동적 계획법
- 위클리 챌린지
- 정렬
- 그리디
Archives
- Today
- Total
상상쓰
[백준] 카드 정렬하기 본문
https://www.acmicpc.net/problem/1715
우선순위 큐(heapq) 를 이용해서 가장 작은 2개의 숫자의 합을 계산해주고 그 값을 또 queue 에 넣어준다. 이러한 과정을 반복하여 queue 에는 하나의 값만 남을 때까지 계속한다. 마지막으로 숫자의 합을 계속 더해준 answer 를 return 한다.
import sys
import heapq
answer = 0
N = int(sys.stdin.readline())
queue = []
for i in range(N):
heapq.heappush(queue, int(sys.stdin.readline()))
while len(queue) > 1:
AB = 0
for i in range(2):
AB += heapq.heappop(queue)
answer += AB
heapq.heappush(queue, AB)
print(answer)
'Coding Test' 카테고리의 다른 글
[백준] 캠핑 (0) | 2021.06.10 |
---|---|
[프로그래머스] 외벽 점검 (0) | 2021.06.09 |
[백준] 주유소 (0) | 2021.06.08 |
[프로그래머스] 수식 최대화 (0) | 2021.06.08 |
[프로그래머스] 불량 사용자 (0) | 2021.06.08 |
Comments