BOJ 5557번 1학년 ( DP ) JAVA
풀이
3차원 배열과 메모이제이션을 활용하여 해결하는 문제였습니다.
링크
https://www.acmicpc.net/problem/5557
소스 코드
package boj;
import java.util.Arrays;
import java.util.Scanner;
public class Boj5557 {
static long res = 0;
static long[][][] dp;
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int[] a = new int[n];
dp = new long[n][21][2];
for (int i = 0; i < n; i++) {
for (int j = 0; j < 21; j++) {
Arrays.fill(dp[i][j], -1);
}
}
for (int i = 0; i < n; i++) {
a[i] = sc.nextInt();
}
res = dfs(a, 0, n, a[0], a[n - 1]);
System.out.println(res);
}
public static long dfs(int[] a, int cnt, int n, int cur, int goal) {
// System.out.println(cur);
if (cur < 0 || cur > 20)
return 0;
if (cnt == n - 2) {
if (cur == goal)
return 1;
else
return 0;
}
if (dp[cnt][cur][0] < 0) {
dp[cnt][cur][0] = dfs(a, cnt + 1, n, cur + a[cnt + 1], goal);
}
if (dp[cnt][cur][1] < 0) {
dp[cnt][cur][1] = dfs(a, cnt + 1, n, cur - a[cnt + 1], goal);
}
long sum = 0;
if (dp[cnt][cur][0] > 0) {
sum += dp[cnt][cur][0];
}
if (dp[cnt][cur][1] > 0) {
sum += dp[cnt][cur][1];
}
return sum;
}
}
'Algorithm' 카테고리의 다른 글
BOJ 2169번 로봇 조종하기 ( DP ) JAVA (0) | 2021.04.06 |
---|---|
BOJ 2098번 외판원 순회 ( DP ) JAVA (0) | 2021.04.05 |
BOJ 1958번 LCS 3 ( DP ) JAVA (0) | 2021.04.04 |
BOJ 1747번 소수&팰린드롬 ( 에라토스테네스의 체 & 스택 ) JAVA (0) | 2021.04.04 |
BOJ 4948번 베르트랑 공준 ( 에라토스테네스의 체 ) JAVA (0) | 2021.04.04 |