forked from ndb796/python-for-coding-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
4.java
30 lines (24 loc) · 824 Bytes
/
4.java
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
import java.util.*;
public class Main {
public static int n, result;
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
n = sc.nextInt();
PriorityQueue<Integer> pq = new PriorityQueue<>();
// 힙(Heap)에 초기 카드 묶음을 모두 삽입
for (int i = 0; i < n; i++) {
pq.offer(sc.nextInt());
}
// 힙(Heap)에 원소가 1개 남을 때까지
while (pq.size() != 1) {
// 가장 작은 2개의 카드 묶음 꺼내기
int one = pq.poll();
int two = pq.poll();
// 카드 묶음을 합쳐서 다시 삽입
int summary = one + two;
result += summary;
pq.offer(summary);
}
System.out.println(result);
}
}