티스토리 뷰
이 문제는 다이나믹 프로그래밍을 이용하여 해결 할 수 있다.
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.jungol.dynamic; | |
import java.util.Scanner; | |
/** | |
* 정올, 2616, 앱 | |
* 다이나믹 프로그래밍 | |
* | |
* http://www.jungol.co.kr/bbs/board.php?bo_table=pbank&wr_id=1878&sca=3050 | |
* | |
* @author whitebeard-k | |
* | |
*/ | |
public class Problem2616 { | |
static int N; | |
static int M; | |
static int totalValue; | |
static int[][] apps; | |
static int MIN; | |
public static void main(String[] args) { | |
Scanner sc = new Scanner(System.in); | |
N = sc.nextInt(); | |
M = sc.nextInt(); | |
apps = new int[N + 1][2]; | |
for (int i = 1; i <= N; i++) { | |
apps[i][0] = sc.nextInt(); | |
} | |
for (int i = 1; i <= N; i++) { | |
apps[i][1] = sc.nextInt(); | |
totalValue += apps[i][1]; | |
} | |
sc.close(); | |
int[] D = new int[totalValue + 1]; | |
// i 번재 앱을 비활성화시 | |
for (int i = 1; i <= N; i++) { | |
// j 비용으로 얻을수 있는 최대 메모리 | |
for (int value = totalValue; value >= 1; value--) { | |
if (value - apps[i][1] >= 0) { | |
D[value] = Math.max(D[value], D[value - apps[i][1]] + apps[i][0]); | |
} | |
if (i == N && D[value] >= M) { | |
// 뒤에서 부터 채워오니 가장 마지막에 채운값이 | |
// 답이된다. | |
MIN = value; | |
} | |
} | |
} | |
System.out.println(MIN); | |
} | |
} |
반응형
'알고리즘 > 정올' 카테고리의 다른 글
[정올][다이나믹] 1491 자동차경주대회 (0) | 2018.01.25 |
---|---|
[정올][다이나믹] 1019 소형기관차 (0) | 2017.07.07 |
[정올][다이나믹] 2293, 동전 1 (0) | 2017.06.19 |
[정올][bfs] 2613 토마토(고) (0) | 2017.05.12 |
[정올][다이나믹] 1411 두 줄로 타일 깔기 (0) | 2017.04.25 |
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- airflow
- HDFS
- emr
- HIVE
- error
- AWS
- 정올
- 하둡
- Hadoop
- 알고리즘
- 파이썬
- build
- SQL
- 하이브
- java
- S3
- SPARK
- yarn
- hbase
- 오류
- Tez
- 백준
- Python
- Linux
- oozie
- 다이나믹
- nodejs
- mysql
- bash
- ubuntu
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함