• 문제 링크
https://www.acmicpc.net/problem/9785
• 풀이 코드
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.OutputStreamWriter;
import java.util.Arrays;
public class Main {
public static void main(String[] args) throws IOException {
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
Pair[] arr = new Pair[read()];
int m = read();
for (int i = 0; i < arr.length; i++) arr[i] = new Pair(read(), read());
Arrays.sort(arr);
int sum = 0, min = Integer.MAX_VALUE;
for (int i = 0; i < m; i++) {
sum += arr[i].a;
min = Math.min(min, arr[i].b);
}
bw.write(sum + " " + min);
bw.flush();
}
private static class Pair implements Comparable<Pair> {
int a, b;
Pair(int a, int b) {
this.a = a;
this.b = b;
}
@Override
public int compareTo(Pair o) {
return o.a != this.a ? o.a - this.a : o.b - this.b;
}
}
private static int read() throws IOException {
int c, n = System.in.read() & 15;
while ((c = System.in.read()) > 32) n = (n << 3) + (n << 1) + (c & 15);
return n;
}
}
'Problem Solving > Baekjoon' 카테고리의 다른 글
[백준] 9501 꿍의 우주여행 - Implementation / Java (0) | 2025.05.20 |
---|---|
[백준] 29835 Palindroom - Greedy / Java (0) | 2025.05.19 |
[백준] 26563 Exam - Greedy / Java (0) | 2025.05.17 |
[백준] 17509 And the Winner Is... Ourselves! - Greedy / Java (0) | 2025.05.16 |
[백준] 17931 Greedily Increasing Subsequence - Greedy / Java (0) | 2025.05.15 |
댓글