티스토리 뷰
그리디 알고리즘의 요플레 공장
1주일 보관하는데 드는 비용을 추가해서 최소값을 계산하면
최소 비용이 된다.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package sdk.algo; | |
import java.util.Scanner; | |
/** | |
* | |
* 2194, 요플레 공장 | |
* 주차에 따른 보관비용을 추가해서 계산하여 최소 비용이 현재 주차의 최소값이 된다. | |
* | |
* @author whitebeard | |
* @since 2016.07.25 | |
*/ | |
public class Problem2194 { | |
public static void main(String[] args) { | |
Scanner in = new Scanner(System.in); | |
int n = in.nextInt(); | |
int s = in.nextInt(); | |
int[][] array = new int[n][2]; | |
for(int i = 0; i < n; i++) { | |
array[i][0] = in.nextInt(); | |
array[i][1] = in.nextInt(); | |
} | |
in.close(); | |
// // 운영할 주 | |
// int n = 4; | |
// // 1리터당 보관 비용 | |
// int s = 5; | |
// | |
// int[][] array = { { 88, 200 }, | |
// { 89, 400 }, | |
// { 97, 300 }, | |
// { 91, 500 } }; | |
// int n = 10000; | |
// int s = 50; | |
// | |
// int[][] array = new int[n][2]; | |
// for(int i = 0; i < n; i++) { | |
// array[i][0] = 2345; | |
// array[i][1] = 10000; | |
// } | |
// 최소 비용 | |
long sum = 0; | |
// 주차 카운ㅌ | |
long count = 0; | |
for(int i = 0; i < n; i++) { | |
long min = Long.MAX_VALUE; | |
for(int j = 0; j <= i; j++) { | |
// 비용에 주차에 따른 보관 비용을 추가해서 계산한다. | |
long result = (((count-j)*s) + array[j][0]) * array[i][1]; | |
min = (min < result) ? min : result; | |
} | |
sum += min; | |
count++; | |
} | |
System.out.println(sum); | |
} | |
} |
반응형
'알고리즘 > 정올' 카테고리의 다른 글
[정올] [BFS] 2261 경로 찾기 (0) | 2016.07.28 |
---|---|
[정올] 1495, 대각선 지그재그 (0) | 2016.07.26 |
[정올] [BFS] 1106 장기 (0) | 2016.07.22 |
[정올] [BFS] 1078 저글링 방사능 오염 (0) | 2016.07.21 |
[정올] 1707 달팽이 문자열 (0) | 2016.07.20 |
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- error
- SPARK
- build
- 다이나믹
- 오류
- hbase
- SQL
- 파이썬
- 정올
- Hadoop
- ubuntu
- Python
- Tez
- 하둡
- bash
- HDFS
- nodejs
- emr
- oozie
- 알고리즘
- 백준
- AWS
- java
- HIVE
- S3
- airflow
- mysql
- yarn
- Linux
- 하이브
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함