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 |
Tags
- FBX
- 실습
- 백준
- C++
- Linux
- UActor
- 백준 1253번
- 트랜잭션 관리
- 오손데이터읽기
- 언리얼 커스텀 플러그인
- 2단계로킹
- 언리얼 플러그인
- objtofbx
- 의미와 무의미의 경계에서
- 민겸수
- 셰그먼트트리
- 1253번
- UnrealMP
- 비재귀셰그먼트
- Security
- SQL
- Unreal
- oracle
- 1759번
- 데이터베이스 배움터
- OS
- 1967번
- 5639
- hackerank
- command not found
Archives
- Today
- Total
fatalite
파도반 수열 - 9461번 백준 본문
문제
문제 난이도 : 실버 3
문제 분류 : 다이나믹 프로그래밍, 수학(수열)
문제 소스 코드
#include <iostream>
#include <vector>
#include <string>
#include <cmath>
#include <algorithm>
#include <queue>
#include <unordered_set>
#include <memory.h>
using namespace std;
long long DP[101];
void Init()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
std::cout.tie(NULL);
}
int main()
{
Init();
int n;
cin >> n;
DP[0] = 1;
DP[1] = 1;
DP[2] = 1;
DP[3] = 2;
DP[4] = 2;
DP[5] = 3;
DP[6] = 4;
DP[7] = 5;
DP[8] = 7;
DP[9] = 9;
for (int i = 0; i < n; i++) {
int Tmp;
cin >> Tmp;
for (int j = 5; j < Tmp; j++) {
DP[j] = DP[j - 2] + DP[j - 3];
}
cout << DP[Tmp - 1] << "\n";
}
}
'코딩 인터뷰 > Dynamic Programming' 카테고리의 다른 글
가장 큰 증가하는 부분 수열 - 11055번 백준 (0) | 2023.10.20 |
---|---|
오르막 수 - 11057번 백준 (0) | 2023.10.14 |
카드 구매하기 - 11052번 백준 (0) | 2023.10.13 |
동전 2 - 2294번 백준 (0) | 2023.10.12 |
파이프 옮기기 1 - 17070번 백준 (2) | 2023.09.24 |