일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 심리여행
- static
- 회피
- 여행계획
- Interface
- 치유
- HelloWorld
- throws
- Transition
- 버킷리스트
- extends
- 보안
- jvm
- 일상회피
- 여행
- abstract
- 취약점
- Navigation Component
- javap
- Shared Elements
- IMPLEMENT
- 일상탈출
- opcode
- bytecode
- 보안취약점
- ㅇ
- Android
- Recylcer
- bytecode 분석
- 심리학
Archives
- Today
- Total
패스트터틀
(Baekjoon) dp - (2) 2×n 타일링 2 본문
https://www.acmicpc.net/problem/11727
우선 내가 주어진 문제가 시험문제이고 DP라는 가정이 있다면
위와같은 가정으로 추론으로 점화식을 풀수있다.
하지만 점화식이 최적의 답인지 아니면 그리디알고리즘에서 더 빨리 찾는법이 있는지
아니면 그외에 더 최적의 알고리즘이 있는지는 경험이 늘어나봐야 알것같다.
package dp;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class _11727{
static int d[] = new int[1001];
public static int dp(int x){
if(x == 1) return 1;
if(x == 2) return 3;
if(d[x] != 0) return d[x];
return d[x] = ((2*dp(x-2)) + dp(x-1)) % 10007;
}
public static void main(String args[]) throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
System.out.println(dp(Integer.parseInt(br.readLine())));
}
}
백준문제풀이Github :
https://github.com/sdk0213/baekjoon-study
'Algorithm > baekjoon' 카테고리의 다른 글
(Baekjoon) dp - (3) 외판원 순회 (0) | 2019.11.22 |
---|---|
(Baekjoon) etc.. - (1) 이진수 연산 (0) | 2019.11.21 |
(Baekjoon) dp - (1) 2×n 타일링 (0) | 2019.11.20 |
(Baekjoon) GreedyAlgorithm - (13) 행렬 (0) | 2019.11.19 |
(Baekjoon) GreedyAlgorithm - (12) 부등호 (0) | 2019.11.17 |
Comments