https://www.acmicpc.net/problem/16194
코드 :
1. dp - 탑다운
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Main {
static StringTokenizer st;
static Integer[] memo;
static int[] costArr;
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int N = Integer.parseInt(br.readLine());
memo = new Integer[N + 1];
costArr = new int[N + 1];
st = new StringTokenizer(br.readLine());
for (int i = 1; i < N + 1; i++) {
costArr[i] = Integer.parseInt(st.nextToken());
}
memo[0] = 0;
memo[1] = costArr[1];
System.out.println(dp(N));
}
public static int dp(int N){
if(memo[N] != null){
return memo[N];
}
memo[N] = costArr[N];
for (int i = 1; i < N+1; i++) {
memo[N] = Math.min(memo[N], dp(N - i) + dp(i));
}
return memo[N];
}
}
2. dp - 바텀업
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());
int[] dp = new int[N+1];
StringTokenizer st = new StringTokenizer(br.readLine());
dp[0] = 0;
for (int i = 1; i < N +1; i++) {
dp[i] = Integer.parseInt(st.nextToken());
for (int j = 1; j <= i/2; j++) {
dp[i] = Math.min(dp[i], dp[i - j] + dp[j]);
}
}
System.out.println(dp[N]);
}
}
참고 :
백준 11052번 - 카드 구매하기 (Java 8) 와 같은 문제였다. 연습삼아 안보고 풀었는데 아직도 적응이 안된다.
'알고리즘 > 백준' 카테고리의 다른 글
백준 10844번 - 쉬운 계단 수 (Java 8) (0) | 2022.03.25 |
---|---|
백준 15990번 - 1, 2, 3 더하기 5 (Java 8) (0) | 2022.03.24 |
백준 11052번 - 카드 구매하기 (Java 8) (0) | 2022.03.23 |
백준 9095번 - 1, 2, 3 더하기 (Java 8) (0) | 2022.03.22 |
백준 11727번 - 2xn 타일링2 (Java 8) (0) | 2022.03.22 |
댓글