Advertisement
yeskendir_sultanov

Fibonacci Memoization

Mar 29th, 2024
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.47 KB | Source Code | 0 0
  1. #include <bits/stdc++.h>
  2. #define ll long long
  3.  
  4. using namespace std;
  5.  
  6. ll f[51];
  7. bool calced[51];
  8.  
  9. ll fib(int n) {
  10.     if (n <= 1) {
  11.         return n;
  12.     } else if (calced[n]) {
  13.         return f[n];
  14.     } else {
  15.         f[n] = fib(n - 2) + fib(n - 1);
  16.         calced[n] = true;
  17.         return f[n];
  18.     }
  19. }
  20.  
  21. int main() {
  22.     std::ios_base::sync_with_stdio(false);
  23.     cin.tie(0);
  24.     cout.tie(0);
  25.     int n;
  26.     cin >> n;
  27.     cout << fib(n);
  28.     return 0;
  29. }
  30.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement