-
Notifications
You must be signed in to change notification settings - Fork 0
/
1003.cpp
executable file
·50 lines (43 loc) · 1.17 KB
/
1003.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
// #include<iostream>
// #include<sstream>
// #include<fstream>
// #include<string>
// #include<algorithm>
// #include<cmath>
// #include<stdexcept>
// #include<memory>
// #include<vector>
// #include<list>
// #include<map>
// #include<set>
// #include<numeric>
// using namespace std;
// static vector<pair<int,int>> counts(41);
// pair<int,int> fibonacci_count(int number){
// if(number == 0){
// return counts[0];
// }else if(number == 1){
// return counts[1];
// }else if(!(counts[number].first == 0 && counts[number].second == 0)){
// return counts[number];
// }else{
// pair<int,int> count_1 = fibonacci_count(number-1);
// pair<int,int> count_2 = fibonacci_count(number-2);
// counts[number].first = count_1.first + count_2.first;
// counts[number].second = count_1.second + count_2.second;
// return counts[number];
// }
// }
// int main(){
// int n;
// cin >> n;
// counts[0] = pair<int,int>(1,0);
// counts[1] = pair<int,int>(0,1);
// while(n>0){
// int number;
// cin >> number;
// pair<int,int> count = fibonacci_count(number);
// cout << count.first << " " << count.second << '\n';
// --n;
// }
// }