Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 자료구조
- spring
- 정렬
- java
- Router
- Algorithm
- 백준
- 스터디
- 동적프로그래밍
- Spring Boot
- url parsing
- mysql
- EventListener
- AWS
- nodejs
- 토이프로젝트
- 백준알고리즘
- sort
- 라우터
- 리액트
- 다익스트라 알고리즘
- ELB
- 알고리즘
- 브루트포스
- react
- EC2
- 서버구축
- 탐욕법
- 완전탐색
- BFS
Archives
- Today
- Total
공부하는 블로그
Baekjoon | Q.9461 - 파도반 수열 본문
동적 프로그래밍을 활용하여 점화식을 해결하는 문제이다.
import java.util.Scanner;
public class Main {
static long[] memory;
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
StringBuilder sb = new StringBuilder();
int t = sc.nextInt();
for (int i = 0; i < t; i++) {
memory = new long[101];
memory[1] = 1;
memory[2] = 1;
memory[3] = 1;
memory[4] = 2;
memory[5] = 2;
int n = sc.nextInt();
sb.append(P(n) + "\n");
}
System.out.println(sb.toString());
}
static long P(int n) {
if(memory[n] != 0) return memory[n];
return memory[n] = P(n-1) + P(n-5);
}
}
처음에 자료형을 int로 결과값을 저장했더니 틀렸다. 결과값을 long으로 저장해주자. 문제의 점화식은 P(n) = P(n-1) + P(n-5)이다. 처음 초기값 P(1) 부터 P(5) 까지는 설정해주고 그 이후는 점화식을 이용하여 재귀 함수를 이용하여 풀어주었다. 이 때, 한번 해결한 문제는 다시 재귀호출을 하지 않기 위해 배열에 저장해주었다.
'알고리즘 공부' 카테고리의 다른 글
Baekjoon | Q.12865 - 평범한 배낭 (0) | 2020.06.10 |
---|---|
Baekjoon | Q.10844 - 쉬운 계단 수 (0) | 2020.06.09 |
Algorithm | Dynamic Programming & Greedy Algorithm (0) | 2020.06.08 |
Baekjoon | Q.10830 - 행렬 제곱 (0) | 2020.06.04 |
Baekjoon | Q.2740 - 행렬 곱셈 (0) | 2020.06.04 |
Comments