일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 | 31 |
Tags
- 일상회피
- bytecode 분석
- opcode
- ㅇ
- 회피
- Interface
- 심리여행
- Shared Elements
- 취약점
- IMPLEMENT
- 심리학
- 일상탈출
- 치유
- 보안
- 보안취약점
- 버킷리스트
- Navigation Component
- Transition
- static
- extends
- throws
- bytecode
- abstract
- jvm
- HelloWorld
- javap
- 여행계획
- Android
- Recylcer
- 여행
Archives
- Today
- Total
패스트터틀
(Baekjoon) dp - (5) 타일 채우기 본문
https://www.acmicpc.net/problem/2133
D(n) = 3*D(n-2) + 2*(D(n-4) + D(n-6) +..... + D(0))
package dp;
import java.io.IOException;
import java.util.Scanner;
public class _2133{
static int result = 0;
static int d[] = new int[100];
public static int dp(int n){
if(n==0)
return 1;
if(n==1)
return 0;
if(n==2)
return 3;
if(d[n] != 0)
return d[n];
result = 3*dp(n-2);
for(int i = 4 ; i <= n ; i+=2){
result += 2*dp(n-i);
}
return d[n] = result;
}
public static void main(String args[]) throws IOException{
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
System.out.println(dp(n));
sc.close();
}
}
홀수인경우는 구할필요없음
점화식을 잘 세우는것이 관건...
이걸 문제유형으로 외워서 푸는건지 아니면 점화식을 직관적으로 세우는사람도 있는지 의아하다.
백준문제풀이Github :
https://github.com/sdk0213/baekjoon-study
'Algorithm > baekjoon' 카테고리의 다른 글
(Baekjoon) brute-force - (1) 부분수열의 합( + 부분집합 출력) (0) | 2019.12.07 |
---|---|
(Baekjoon) dp - (6) 타일 채우기 3 (0) | 2019.12.02 |
(Baekjoon) dp - (4) 피보나치 (0) | 2019.11.28 |
(Baekjoon) dp - (3) 외판원 순회 (0) | 2019.11.22 |
(Baekjoon) etc.. - (1) 이진수 연산 (0) | 2019.11.21 |
Comments