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
- algorithm
- 2294
- 1563
- directx
- NRVO
- DeferredRendering
- Programmers
- RVO
- IFileDialog
- Unreal Engine5
- 백준
- C
- 줄 세우기
- 팰린드롬 만들기
- Frustum
- 프로그래머스
- UnrealEngine4
- 티스토리챌린지
- C++
- 오블완
- GeeksForGeeks
- UE5
- const
- 언리얼엔진5
- RootMotion
- softeer
- DirectX11
- UnrealEngine5
- winapi
- baekjoon
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 1788번 : 피보나치 수의 확장 본문
https://www.acmicpc.net/problem/1788
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
#include <iostream>
#include <string>
#include <map>
#include <vector>
#include <algorithm>
#include <math.h>
#include <queue>
#include <functional>
#include <sstream>
#include <memory.h>
#include <deque>
#include <set>
#include <unordered_map>
#include <stack>
#include <numeric>
using namespace std;
const int mod = 1000000000;
const int offset = 1000000;
int n;
int dp[2000001] = { 0 };
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cin >> n;
if (n == 0)
{
cout << 0 << endl << 0;
return 0;
}
dp[offset - 1] = 1;
dp[offset + 1] = 1;
dp[offset + 2] = 1;
for (int i = 2; i <= 1000000; ++i)
{
dp[i + offset] = (dp[i - 1 + offset] + dp[i - 2 + offset]) % mod;
}
for (int i = offset; i >= 1; --i)
{
dp[i - 1] = (dp[i + 1] - dp[i]) % mod;
}
int isPositiveNum = dp[n + offset] > 0 ? 1 : -1;
cout << isPositiveNum << endl << abs(dp[n + offset]);
}
|
cs |
피보나치수열인데 n값이 0이들어올 수도 있는 문제이다.
그냥 offset값을 적용해서, -100만 ~ 100만인 범위를 0~200만으로 옮기면 된다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 12869번 : 뮤탈리스크 (0) | 2024.03.24 |
---|---|
[Algorithm]Baekjoon 1106번 : 호텔 (1) | 2024.03.24 |
[Algorithm]Baekjoon 1949번 : 우수 마을 (0) | 2024.03.21 |
[Algorithm]Baekjoon 10211번 : Maximum Subarray (0) | 2024.03.20 |
[Algorithm]Baekjoon 2482번 : 색상환 (0) | 2024.03.20 |