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
- UnrealEngine5
- 2294
- 줄 세우기
- 백준
- 언리얼엔진5
- 티스토리챌린지
- RVO
- NRVO
- Frustum
- 프로그래머스
- Unreal Engine5
- baekjoon
- RootMotion
- 1563
- directx
- C
- C++
- algorithm
- winapi
- UE5
- DeferredRendering
- 오블완
- const
- 팰린드롬 만들기
- DirectX11
- softeer
- UnrealEngine4
- GeeksForGeeks
- Programmers
- IFileDialog
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 9095번 : 1,2,3 더하기 본문
https://www.acmicpc.net/problem/9095
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
32
33
34
35
36
37
38
39
40
|
int dpArray[1001];
int dp(int n)
{
for (int i = 5; i <= n; i++)
{
dpArray[i] = dpArray[i - 1] + dpArray[i - 2] + dpArray[i - 3];
}
return dpArray[n];
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int num = 0;
int temp = 0;
vector<int> result;
dpArray[0] = 0;
dpArray[1] = 1;
dpArray[2] = 2;
dpArray[3] = 4;
dpArray[4] = 7;
cin >> num;
for (int i = 0; i < num; i++)
{
cin >> temp;
result.push_back(dp(temp));
}
for (auto temp : result)
{
cout << temp << endl;
}
}
|
cs |
문제 자체는 실버3 정도로 어렵지 않다.
이번 문제같은 경우는 일일이 경우의 수를 찾아서 규칙을 찾은게 아니라, 타일링문제 풀때 점화식도출방법을 응용해서 생각했더니 원하는 답이 나왔다.
f(4)까지 일일이 경우의 수만 구하더라도, f(n) = f(n-1) + f(n-2) + f(n-3) 인 걸 알수있다.
하지만 그러다가 경우의 수가 너무 중구난방이라 규칙을 찾기 힘들수도 있으니, 좀 더 근본적으로 다가가서 풀어야한다.
n이 4인 경우에, sum = 0부터 값을 하나씩 더해보기로 하자.
1을 먼저 더한다면, 남은값은 3, 즉 n-1이다.
2를 먼저 더한다면, 남은값은 2, 즉 n-2 이다.
3을 먼저 더한다면, 남은값은 1, 즉 n-3 이다.
이것도 타일링문제처럼, 왼쪽부터 뭔가 세워놓고 생각해보면 된다. 주어진 숫자(타일)을 먼저 세워놓고, 남은 숫자(공간)이 얼마나 체크해보면 된다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 11404번 : 플로이드 (0) | 2022.09.06 |
---|---|
[Algorithm]Baekjoon 15988번 : 1,2,3 더하기 3 (0) | 2022.09.05 |
[Algorithm]Baekjoon 2667번 : 단지번호붙이기 (0) | 2022.08.08 |
[Algorithm]Baekjoon 1987번 : 숨바꼭질 (0) | 2022.08.06 |
[Algorithm]Baekjoon 1987번 : 알파벳 (0) | 2022.07.18 |