-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfactorial_fibonacci.cpp
56 lines (48 loc) · 1.39 KB
/
factorial_fibonacci.cpp
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<bits/stdc++.h>
using namespace std;
#define ff first
#define ss second
#define int long long
#define pb push_back
#define mp make_pair
#define mt make_tuple
#define pii pair<int,int>
#define vi vector<int>
#define mii map<int,int>
#define pqb priority_queue<int>
#define pqs priority_queue<int,vi,greater<int>
#define setbits(x) __builtin_popcountll(x)
#define mod 1000000007
#define inf 1e18
#define ps(x,y) fixed<<setprecision(y)<<x
#define mk(arr,n,type) type *arr=new type[n];
#define range(a,b) substr(a,b-a+1)
#define w(x) int x; cin>>x; while(x--)
#define trace(x) cerr<<#x<<": "<<x<<" "<<endl;
#define FIO ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0)
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
int fact(int n) // TC -> O(N), SC -> O(N)
{
if(n<=1)
return 1;
return n * fact(n-1);
}
int fibo(int n) // TC -> O(2^N), SC -> O(N), TC is O(2^N) because every node has 2 childs
{
if(n<=1)
return 1;
return fibo(n-1) + fibo(n-2);
}
int32_t main()
{
FIO;
#ifndef ONLINE_JUDGE
freopen("input1.txt", "r", stdin);
freopen("output1.txt", "w", stdout);
#endif
int n;
cin>>n;
cout<<fact(n)<<"\n";
cout<<fibo(n)<<"\n";
return 0;
}