풀이 방법
점화식을 세우는 건 익숙하지 않아서 정말 어렵다.
구현 코드
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Q_2293 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int n = Integer.parseInt(st.nextToken());
int k = Integer.parseInt(st.nextToken());
int[] coin = new int[n+1];
for (int i = 1; i <= n; i++) {
coin[i] = Integer.parseInt(br.readLine());
}
int[] dp = new int[k+1];
dp[0] = 1;
for (int i = 1; i <= n; i++) {
for (int j = coin[i]; j <= k; j++) {
dp[j] = dp[j] + dp[j-coin[i]];
}
}
System.out.print(dp[k]);
}
}
'Algorithm > Baekjoon' 카테고리의 다른 글
[ Baekjoon ] 1520번 - 내리막 길 (0) | 2021.01.18 |
---|---|
[ Baekjoon ] 1912번 - 연속합 (0) | 2021.01.17 |
[ Baekjoon ] 2573번 - 빙산 (0) | 2021.01.13 |
[ Baekjoon ] 1932번 - 정수 삼각형 (0) | 2021.01.13 |
[ Baekjoon ] 2468번 - 안전 영역 (0) | 2021.01.13 |