import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int n = Integer.parseInt(br.readLine());
StringTokenizer st = new StringTokenizer(br.readLine());
int[] arr = new int[n + 1];
int[] d = new int[n + 1];
for (int i = 1; i <= n; i++)
arr[i] = Integer.parseInt(st.nextToken());
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= i; j++) {
d[i] = Math.max(d[i], d[i - j] + arr[j]);
}
}
System.out.println(d[n]);
}
}
[출처]
https://www.acmicpc.net/problem/11052
'CODING > BAEKJOON' 카테고리의 다른 글
[BAEKJOON] 카드 구매하기 2 (0) | 2024.04.17 |
---|---|
[BAEKJOON] LCS (0) | 2024.04.10 |
[BAEKJOON] 알고리즘의 수행 시간 1 (0) | 2023.10.26 |
[BAEKJOON] 효율적인 해킹 (0) | 2023.08.10 |
[BAEKJOON] 플로이드 (0) | 2023.08.02 |
댓글