문제 출처
https://www.acmicpc.net/problem/9095
접근 방식 및 풀이
- 다이나믹 프로그래밍 (DP) 의 기본 문제
- 재 사용할수 있는 부분을 구하여, 그다음 숫자의 값을 구할 때 활용한다.
소스 코드
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int[] result = new int[n];
for (int j = 0; j < n; j++) {
result[j] = sc.nextInt();
}
int[] dp = new int[12];
dp[1] = 1;
if(n>1) dp[2] = 2;
if(n>2) dp[3] = 4;
for (int i = 4; i <= 11; i++) {
dp[i] = dp[i-3] + dp[i-2] + dp[i-1];
}
for(int k =0; k<n; k++){
System.out.println(dp[result[k]]);
}
}
}
|
결과
'Competition > Baekjoon' 카테고리의 다른 글
[백준] 2580번 자바 스도쿠 (0) | 2020.05.10 |
---|---|
[백준] 1451번 자바 직사각형으로 나누기 (6) | 2020.05.05 |
[백준] 1987번 자바 알파벳 (0) | 2020.05.04 |