일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- HelloWorld
- 버킷리스트
- IMPLEMENT
- extends
- 여행계획
- throws
- 심리여행
- 치유
- static
- Recylcer
- Shared Elements
- javap
- ㅇ
- Interface
- 일상회피
- 보안
- 보안취약점
- jvm
- 심리학
- bytecode
- 회피
- opcode
- 취약점
- Transition
- Navigation Component
- Android
- 일상탈출
- 여행
- bytecode 분석
- abstract
Archives
- Today
- Total
패스트터틀
(Baekjoon) GreedyAlgorithm - (5) 로프 본문
https://www.acmicpc.net/problem/2217
package GreedyAlgorithm;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.lang.reflect.Array;
import java.util.*;
/*
2
10
15
1500
2000
3000
4000
5000
가장큰것은 혼자 들면 5000
그보다 낮은것을 합해서 들면 4000 * 2
그보다 낮은것을 더해서 들면 3000 * 3
...
*/
public class _2217{
public static void main(String[] args) {
try{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int count = Integer.parseInt(br.readLine());
List<Integer> list = new ArrayList<Integer>();
List<Integer> sum = new ArrayList<Integer>();
for (int i = 0; i < count; i++) {
list.add(i,Integer.parseInt(br.readLine()));
}
Collections.sort(list,Collections.reverseOrder());
for (int i = 0; i < list.size() ; i++) {
sum.add(i,list.get(i) * (i+1) );
}
Collections.sort(sum);
System.out.println(sum.get(sum.size() - 1));
} catch (IOException e){
e.printStackTrace();
}
}
}
참고로 문제 이해하는데 걸린시간이 푸는시간보다 더 많다.
주석 참고하기
백준문제풀이Github :
https://github.com/sdk0213/baekjoon-study
'Algorithm > baekjoon' 카테고리의 다른 글
(Baekjoon) GreedyAlgorithm - (7) 대회 or 인턴 (0) | 2019.11.07 |
---|---|
(Baekjoon) GreedyAlgorithm - (6) 30 (0) | 2019.11.07 |
(Baekjoon) GreedyAlgorithm - (4) 거스름돈 (0) | 2019.11.06 |
(Baekjoon) GreedyAlgorithm - (3) 회의실배정 (0) | 2019.11.05 |
(Baekjoon) GreedyAlgorithm - (2) 동전 0 (0) | 2019.11.04 |
Comments