-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy path11000.cpp
52 lines (42 loc) · 805 Bytes
/
11000.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
/*
dynamic programming
difficulty: easy
date: 03/Oct/2020
by: @brpapa
*/
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int MAX_N = 50;
/*
1f -> 1m
1m -> 1m 1f
0: 1f+0f 0m
1: 1f+0f 1m
2: 1f+1f 2m
3: 1f+2f 4m
4: 1f+4f 7m
*/
vector<ll> memo_m;
ll m(int n) {
if (n == 0) return 0;
if (n == 1) return 1;
ll &ans = memo_m[n];
if (ans != -1) return ans;
return ans = m(n-1) + m(n-2) + 1; // m(n-1) + f(n-1)
}
vector<ll> memo_f;
ll f(int n) {
if (n == 0) return 1;
ll &ans = memo_f[n];
if (ans != -1) return ans;
return ans = m(n-1)+1;
}
int main() {
memo_m.assign(MAX_N, -1); memo_f.assign(MAX_N, -1);
int n;
while (cin >> n && n != -1) {
cout << m(n) << " " << m(n)+f(n) << endl;
}
return 0;
}