X
1495번 - Day of Mourning
import java.util.Arrays;
import java.util.Scanner;
public class Main {
/* N = 리스트의 개수. S = 시작 볼륨. M = 최대 볼륨 수치. */
static int N, S, M; // 1<= <=M
static int[] volume;
static int[][] cache;
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
N = sc.nextInt();
S = sc.nextInt();
M = sc.nextInt();
volume = new int[N];
for (int i = 0; i < N; i++) {
volume[i] = sc.nextInt();
}
cache = new int[M+1][N];
for(int i=0;i<=M;i++) {
Arrays.fill(cache[i], -2);
}
System.out.println(control(S,0));
sc.close();
}
/*
* nowVol = 현재 볼륨
* order = 몇 번째 공연인지
* */
static int control(int nowVol, int order) {
if(order==N) {
return nowVol;
}
if(cache[nowVol][order]!=-2)
return cache[nowVol][order];
int ret = -1;
if(nowVol+volume[order]<=M) {
ret = Math.max(ret, control(nowVol+volume[order], order+1));
}
if(nowVol-volume[order]>=0) {
ret = Math.max(ret, control(nowVol-volume[order], order+1));
}
cache[nowVol][order] = ret;
return ret;
}
}
최근 글
같은 카테고리의 다른 글
- 9933번 민균이의 비밀번호
- 1764번 듣보잡
- 1475번 방 번호
- 1157번 단어공부
- 최소값과 최대값
- 구간 합 구하기
- 최소값
- 1181번 - 단어 정렬
- 11652번 - 카드
- 2169번 - 로봇 조종하기
- 2178번 - 미로 탐색
- 9084번 - 동전
- 2098번 - 외판원 순회
- 11049번 - 행렬 곱셉 순서
- 2302번 - 극장 좌석
- 1495번 - Day of Mourning
- 11060번 - 점프 점프
- 5557번 - 1학년
- 1697번 - 숨바꼭질
- 2631번 - 줄세우기
- 11004번 - K번째 수
- 9507번 - Generations of Tribbles
- 1904번 - 01타일
- 10942번 - 팰린드롬
- 10164번 - 격자상의 경로
- 2011번 - 암호코드
- 11066번 - 파일합치기
- 11054번 - 가장 긴 바이토닉 수열
- 11724번 - 연결 요소 개수
- 11403번 - 경로찾기
- 2667번 - 단지번호붙이기
- 3187번 - 양치기 꿍
- 2225번 - 합분해
- 1965번 - 상자넣기
- 1937번 - 욕심쟁이 판다
- 1890번 - 점프
- 1520번 - 내리막길