일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 자료구조
- 시간복잡도
- string 메소드
- 2557
- iOS14
- 구조체와 클래스의 공통점 및 차이점
- Django란
- UI한글변경
- k-eta
- vscode
- 연결요소
- double ended queue
- string 함수
- Django의 편의성
- 백준
- 입출력 패턴
- EOF
- 입/출력
- Django Nodejs 차이점
- 프레임워크와 라이브러리의 차이
- 매크로
- 표준 입출력
- 알고리즘 공부방법
- 장고란
- 이분그래프
- correlation coefficient
- scanf
- 엑셀
- c++
- getline
Archives
- Today
- Total
Storage Gonie
(6) [C++, Java] 백준 No.2193 : 이친수 본문
반응형
문제
풀이
자세한 풀이 : https://ldgeao99.tistory.com/entry/챕터3-7-DP-문제-풀이6-백준-No0000-카?category=864321
# C++(Top-down방식)
#include <iostream>
using namespace std;
long long d[91] = {0};
long long getTwoChinNum(int n)
{
if ( n <= 2)
return 1;
else if (d[n] > 0)
return d[n];
else
d[n] = getTwoChinNum(n-1) + getTwoChinNum(n-2);
return d[n];
}
int main()
{
int n;
cin >> n;
d[1] = 1;
d[2] = 1;
cout << getTwoChinNum(n);
}
# C++(Bottom-up방식)
#include <iostream>
using namespace std;
long long d[91] = {0};
int main() {
int n;
cin >> n;
d[1] = 1;
d[2] = 1;
for (int i=3; i<=n; i++)
d[i] = d[i-1] + d[i-2];
cout << d[n] << '\n';
}
# C++(Bottom-up방식)
#include <iostream>
using namespace std;
int main()
{
int n;
cin >> n;
long long d[91][2] = {{0, 0}, {0, 0}, {1, 0}};
if (n <= 2)
cout << 1 << "\n";
else
{
for (int i = 3; i <= n; i++)
{
d[i][0] = d[i-1][0] + d[i-1][1];
d[i][1] = d[i-1][0];
}
cout << d[n][0] + d[n][1] << "\n";
}
}
# Java
import java.util.*;
import java.math.*;
public class Main {
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
long[] d = new long[n+1];
d[1] = 1;
if (n >= 2) {
d[2] = 1;
}
for (int i=3; i<=n; i++) {
d[i] = d[i-1] + d[i-2];
}
System.out.println(d[n]);
}
}
반응형
'알고리즘 > 백준풀이6. 다이나믹프로그래밍' 카테고리의 다른 글
(8) [C++, Java] 백준 No.11057 : 오르막 수 (0) | 2019.05.09 |
---|---|
(7) [C++, Java] 백준 No.10844 : 쉬운 계단 수 (0) | 2019.05.09 |
(5) [C++, Java] 백준 No.11052 : 카드 구매하기 (0) | 2019.04.30 |
(4) [C++, Java] 백준 No.9095 : 1, 2, 3 더하기 (0) | 2019.04.30 |
(3) [C++, Java] 백준 No.11727 : 2xn 타일링2 (0) | 2019.04.30 |
Comments