백준 24416번 : 알고리즘 수업 - 피보나치 수 1 / C++

2023. 2. 20. 09:39개인공부/코딩테스트

24416번: 알고리즘 수업 - 피보나치 수 1 (acmicpc.net)

 

24416번: 알고리즘 수업 - 피보나치 수 1

오늘도 서준이는 동적 프로그래밍 수업 조교를 하고 있다. 아빠가 수업한 내용을 학생들이 잘 이해했는지 문제를 통해서 확인해보자. 오늘은 n의 피보나치 수를 재귀호출과 동적 프로그래밍

www.acmicpc.net

 

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
56
#include <iostream>
 
using namespace std;
int arr[50= {};
int a, b;
// 재귀
int fi(int num)
{
    if (num == 1 || num == 2)
    {
        ++a;
        return 1;
    }
    else
        return (fi(num - 1+ fi(num - 2));
}
 
int fibonacci(int num)
{
    if (num == 1 || num == 2)
    {
        return 1;
    }
 
    if (arr[num] == 0)
    {
        arr[num] =fibonacci(num-1+fibonacci(num-2);
        ++b;
        return arr[num];
    }
 
    return arr[num];
    
}
 
int main()
{
 
    for (int i = 0; i < 50++i)
    {
        arr[i] = 0;
    }
 
    int number = 0;
    cin >> number;
    fi(number);
    fibonacci(number);
 
    cout << a << ' ' << b;
 
 
 
    return 0;
}
 
 
cs