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
- 1563
- GeeksForGeeks
- algorithm
- baekjoon
- UE5
- 프로그래머스
- Programmers
- 백준
- 줄 세우기
- Frustum
- 티스토리챌린지
- Unreal Engine5
- const
- C++
- softeer
- 2294
- RVO
- winapi
- DirectX11
- UnrealEngine5
- DeferredRendering
- directx
- C
- IFileDialog
- RootMotion
- 오블완
- 언리얼엔진5
- NRVO
- 팰린드롬 만들기
- UnrealEngine4
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 15624번 : 피보나치 수 7 본문
https://www.acmicpc.net/problem/15624
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
|
#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 = 1000000007;
int n;
int arr[3] = { 0 };
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cin >> n;
if (n == 0)
{
cout << 0;
return 0;
}
arr[0] = 0;
arr[1] = 1;
int first = 0;
int second = 1;
int result = 2;
for (int i = 0; i < n+1; ++i)
{
arr[result] = (arr[first] % mod + arr[second] % mod) % mod;
first = (first + 1) % 3;
second = (second + 1) % 3;
result = (result + 1) % 3;
}
cout << arr[result];
}
|
cs |
간단한 피보나치문제인데, n값이 100만이라서 그냥 100만크기의 int형 배열을 선언해서 fibonacci[n] = fibonacci[n-1] + fibonacci[n-2] 이렇게 풀어도 된다.
근데 사실 계산할때마다 n-1번째랑 n-2번째만 필요하기 때문에 그냥 크기 3짜리 int형 배열로도 충분히 문제가 풀린다.
처음에는 0번째 인덱스와 1번째 인덱스를 n-1번째값인덱스,n-2번째값 인덱스로 사용하고 n값을 2번쨰인덱스에 저장한다.
그다음에는 각각의 인덱스값(first,second,result)을 +1씩 해주고 3으로 나눠주면, 한칸씩 칸이 밀리기 때문에 또 재활용해서 쓸 수 있는 것이다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 2616번 :: 소형기관차 (0) | 2024.03.28 |
---|---|
[Algorithm]Baekjoon 9658번 :: 돌 게임4 (0) | 2024.03.26 |
[Algorithm]Baekjoon 14567번 : 선수과목 (Prerequisite) (0) | 2024.03.26 |
[Algorithm]Baekjoon 2688번 : 줄어들지 않아 (0) | 2024.03.25 |
[Algorithm]Baekjoon 12869번 : 뮤탈리스크 (0) | 2024.03.24 |