-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLeetCode_518.cpp
64 lines (58 loc) · 1.53 KB
/
LeetCode_518.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
56
57
58
59
60
61
62
63
64
#include <iostream>
#include <vector>
using namespace std;
typedef vector<int> vi;
typedef vector<vi> vvi;
#define _CRT_SECURE_NO_DEPRECATE
#define __elshorpagi__ (ios_base::sync_with_stdio(false), cin.tie(NULL))
#define sz(v) ((int)((v).size()))
#define edl '\n'
class Solution
{
vvi memory; // for Memoization
public:
Solution() { __elshorpagi__, memory.resize(305, vi(5005, -1)); }
int dp(vi &coins, int remaining, int idx)
{
if (idx >= sz(coins))
return 0;
if (!remaining)
return 1;
auto &ref(memory[idx][remaining]);
if (ref != -1)
return ref;
int pick(0);
if (coins[idx] <= remaining)
pick = dp(coins, remaining - coins[idx], idx);
int leave(dp(coins, remaining, idx + 1));
return ref = leave + pick;
}
int change(int amount, vi &coins)
{
return dp(coins, amount, 0);
}
void TEST()
{
// int amount(5);
// vi coins{1, 2, 5};
// cout << change(amount, coins) << edl; // 4
// int amount(10);
// vi coins{10};
// cout << change(amount, coins) << edl; // 1
int amount(3);
vi coins{2};
cout << change(amount, coins) << edl; // 0
}
};
int main()
{
Solution sol;
// freopen("../../test/input.txt", "r", stdin);
freopen("../../test/output.txt", "w", stdout);
int tc(1);
// cin >> tc;
while (tc--)
cout << "Case #" << tc + 1 << edl, sol.TEST();
cout << edl << "DONE" << edl;
return (0);
}