https://www.acmicpc.net/problem/2217
1. 풀이
각 로프마다 들 수 있는 중량이 있으며, k개의 로프를 사용하여 중량이 w인 물체를 들어올릴 때, 각각의 로프에는 모두 고르게 w/k 만큼의 중량이 걸리게 된다.
그리디를 사용해서 로프의 개수마다의 최대 들 수 있는 중량을 비교하여 최대 값을 저장하면 되는 문제입니다.
n = 3 , ropes = {15,10,5} | 무게 |
{15} | 15 * 1 = 15 |
{15, 10} | 10 * 2 = 20 |
{15, 10, 5} | 5 * 3 = 15 |
2. 코드
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
Integer[] ropes = new Integer[n];
for(int i = 0; i < n; i++)
ropes[i] = sc.nextInt();
// 오름차순 정렬
Arrays.sort(ropes, new Comparator<Integer>() {
@Override
public int compare(Integer o1, Integer o2) {
return o2.compareTo(o1);
}
});
int result = 0;
for(int i = 0; i < ropes.length; i++) {
if(ropes[i]*(i+1) > result)
result = ropes[i]*(i+1);
}
System.out.println(result);
sc.close();
return;
}
}
'알고리즘 > 백준' 카테고리의 다른 글
[백준 2875] 대회 or 인턴 (0) | 2020.04.03 |
---|---|
[백준 10610] 30 - 자바 (0) | 2020.04.03 |
[백준 5585] 거스름돈 - 자바 (0) | 2020.04.03 |
[백준 1931] 회의실배정 - 자바 (0) | 2020.04.03 |
[백준 11047] 동전 0 - 자바 (0) | 2020.04.03 |
댓글