728x90
반응형
https://www.acmicpc.net/problem/1715
풀이
우선순위 큐를 이용하여 가장 작은 수 더한값을 answer에 더해주고 더한값을 우선순위큐에 넣는 방식으로 pq의 크기가 1이 될때까지 반복하시면 됩니다.
소스코드
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.PriorityQueue;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
PriorityQueue<Integer> pq = new PriorityQueue<>();
int n = Integer.parseInt(br.readLine());
while(n --> 0) {
pq.add(Integer.parseInt(br.readLine()));
}
long answer = 0;
while(pq.size() != 1) {
int num = pq.poll() + pq.poll();
answer += num;
pq.add(num);
}
System.out.print(answer);
}
}
728x90
반응형
'백준 > 1 - 5000' 카테고리의 다른 글
[백준] 3135번 : 라디오 (0) | 2024.11.13 |
---|---|
[백준] 2785번 : 체인 (0) | 2024.11.09 |
[백준] 2075번 : N번째 큰 수(JAVA) (0) | 2021.10.25 |
[백준] 1300번 : K번째 수(JAVA) (0) | 2021.10.18 |
[백준] 2199번 : DNA 해독2(JAVA) (0) | 2021.10.14 |
댓글