728x90
반응형
문제는 다음과 같습니다.
https://www.acmicpc.net/problem/11052
import java.util.Scanner; public class Test11052{ public static void main(String[] args){ Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int arr[] = new int[n+1]; for(int i=1; i<=n; i++) { arr[i] = sc.nextInt(); } int dp[] = new int[n+1]; for(int i=1; i<=n; i++) { for(int j=1; j<=i; j++) { dp[i] = Math.max(dp[i], dp[i-j]+arr[j]); } } System.out.println(dp[n]); sc.close(); } }
결과는 다음과 같습니다.
728x90
반응형
'프로그래밍 > 알고리즘' 카테고리의 다른 글
백준 알고리즘 1260번 DFS와 BFS (0) | 2017.10.16 |
---|---|
백준 알고리즘 2566번 최댓값!! (0) | 2017.10.16 |
백준 알고리즘 2579번 계단오르기!! (0) | 2017.10.11 |
백준 알고리즘 1924번 2007년!! (0) | 2017.10.11 |
백준 알고리즘 14501번 퇴사!! (0) | 2017.10.08 |