forked from neetcode-gh/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path0518-coin-change-ii.js
More file actions
181 lines (150 loc) · 4.27 KB
/
0518-coin-change-ii.js
File metadata and controls
181 lines (150 loc) · 4.27 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
/**
* Brute Force - DFS
* Time O(2^N) | Space O(N)
* @param {number} amount
* @param {number[]} coins
* @return {number}
*/
var change = (amount, coins, n = coins.length) => {
const isBaseCase1 = amount === 0;
if (isBaseCase1) return 1;
const isBaseCase2 = n === 0;
if (isBaseCase2) return 0;
return dfs(amount, coins, n); /* Time O(2^N) | Space O(N) */
};
var dfs = (amount, coins, n) => {
const isLess = amount < coins[n - 1];
if (isLess)
return change(amount, coins, n - 1); /* Time O(2^N) | Space O(N) */
const left = change(
amount - coins[n - 1],
coins,
n,
); /* Time O(2^N) | Space O(N) */
const right = change(amount, coins, n - 1); /* Time O(2^N) | Space O(N) */
return left + right;
};
/**
* DP - Top Down
* Matrix - Memoization
* Time O(N * AMOUNT) | Space O(N * AMOUNT)
* https://leetcode.com/problems/coin-change-ii/
* @param {number} amount
* @param {number[]} coins
* @return {number}
*/
var change = (
amount,
coins,
n = coins.length,
memo = initMemo(coins, amount),
) => {
const isBaseCase1 = n === 0;
if (isBaseCase1) return 0;
const isBaseCase2 = amount === 0;
if (isBaseCase2) return 1;
const hasSeen = memo[n][amount] !== null;
if (hasSeen) return memo[n][amount];
return dfs(
amount,
coins,
n,
memo,
); /* Time O(N * AMOUNT) | Space O((N * AMOUNT) + HEIGHT) */
};
var initMemo = (coins, amount) =>
new Array(coins.length + 2)
.fill()
.map(() => new Array(amount + 2).fill(null));
var dfs = (amount, coins, n, memo) => {
const isLess = amount < coins[n - 1];
if (isLess) {
memo[n][amount] = change(
amount,
coins,
n - 1,
memo,
); /* Time O(N * AMOUNT) | Space O(HEIGHT) */
return memo[n][amount];
}
const left = change(
amount - coins[n - 1],
coins,
n,
memo,
); /* Time O(N * AMOUNT) | Space O(HEIGHT) */
const right = change(
amount,
coins,
n - 1,
memo,
); /* Time O(N * AMOUNT) | Space O(HEIGHT) */
memo[n][amount] =
left + right; /* | Space O(N * AMOUNT) */
return memo[n][amount];
};
/**
* DP - Bottom Up
* Array - Tabulation
* Time O(N * AMOUNT) | Space O(N * AMOUNT)
* https://leetcode.com/problems/coin-change-ii/
*/
var change = (amount, coins) => {
const tabu = initTabu(
amount,
coins,
); /* Time O(N * AMOUNT) | Space O(N * AMOUNT) */
search(amount, coins, tabu); /* Time O(N * AMOUNT) | Space O(N * AMOUNT) */
return tabu[coins.length][amount];
};
var initTabu = (amount, coins) => {
const tabu = new Array(coins.length + 1)
.fill() /* Time O(N) | Space O(N) */
.map(() =>
new Array(amount + 1).fill(0),
); /* Time O(AMOUNT) | Space O(AMOUNT) */
tabu[0][0] = 1; /* | Space O(N * AMOUNT) */
return tabu;
};
var search = (amount, coins, tabu) => {
for (let coin = 1; coin <= coins.length; coin++) {
/* Time O(N)*/
tabu[coin][0] = 1; /* Space O(N * AMOUNT) */
for (let _amount = 1; _amount <= amount; _amount++) {
/* Time O(AMOUNT) */
tabu[coin][_amount] = tabu[coin - 1][_amount];
const canUpdate = 0 <= _amount - coins[coin - 1];
if (!canUpdate) continue;
const val = tabu[coin][_amount - coins[coin - 1]];
tabu[coin][_amount] += val; /* Space O(N * AMOUNT) */
}
}
};
/**
* DP - Bottom Up
* Array - Tabulation
* Time O(N * AMOUNT) | Space O(AMOUNT)
* https://leetcode.com/problems/coin-change-ii/
* @param {number} amount
* @param {number[]} coins
* @return {number}
*/
var change = (amount, coins) => {
const tabu = initTabu(amount);
search(amount, coins, tabu);
return tabu[amount];
};
var initTabu = (amount) => {
var tabu = new Array(amount + 1).fill(0);
tabu[0] = 1;
return tabu;
};
var search = (amount, coins, tabu) => {
for (const coin of coins) {
for (let _amount = 0; _amount < amount + 1; _amount++) {
const canUpdate = coin <= _amount;
if (!canUpdate) continue;
tabu[_amount] += tabu[_amount - coin];
}
}
};