-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
0494-target-sum.js
173 lines (137 loc) · 5.79 KB
/
0494-target-sum.js
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
/**
* Brute Force - DFS
* Time O(2^N) | Space O(N)
* https://leetcode.com/problems/target-sum/
* @param {number[]} nums
* @param {number} target
* @return {number}
*/
var findTargetSumWays = (nums, target, index = 0, sum = 0) => {
const isBaseCase = (index === nums.length);
if (isBaseCase) {
const isTarget = (sum === target);
if (isTarget) return 1;
return 0;
}
return dfs(nums, target, index, sum);/* Time O(2^N) | Space O(HEIGHT) */
}
var dfs = (nums, target, index, sum) => {
const left = findTargetSumWays(nums, target, (index + 1), (sum + nums[index])); /* Time O(2^N) | Space O(HEIGHT) */
const right = findTargetSumWays(nums, target, (index + 1), (sum - nums[index]));/* Time O(2^N) | Space O(HEIGHT) */
return (left + right);
}
/**
* DP - Top Down
* Matrix - Memoization
* Time O(N * M) | Space O(N * M)
* https://leetcode.com/problems/target-sum/
* @param {number[]} nums
* @param {number} target
* @return {number}
*/
var findTargetSumWays = (nums, target) => {
const total = nums.reduce((sum, num) => (sum + num), 0);/* Time O(N) */
return calculate(nums, target, total); /* Time O(N * M) | Space O((N * M) + HEIGHT) */
}
var initMemo = (nums, total) => new Array(nums.length).fill()/* Time O(N) | Space O(N) */
.map(() => new Array(((total + 1) << 1)).fill(null)); /* Time O(M) | Space O(M) */
const calculate = (nums, target, total, index = 0, sum = 0, memo = initMemo(nums, total)) => {
const isBaseCase = (index === nums.length);
if (isBaseCase) {
const isTarget = (sum === target);
if (isTarget) return 1;
return 0;
}
const hasSeen = (memo[index][(sum + total)] != null);
if (hasSeen) return memo[index][(sum + total)];
return dfs(nums, target, total, index, sum, memo);/* Time O(N * M) | Space O((N * M) + HEIGHT) */
}
var dfs = (nums, target, total, index, sum, memo) => {
const left = calculate(nums, target, total, (index + 1), (sum + nums[index]), memo); /* Time O(N * M) | Space O(HEIGHT) */
const right = calculate(nums, target, total, (index + 1), (sum - nums[index]), memo);/* Time O(N * M) | Space O(HEIGHT) */
memo[index][(sum + total)] = (left + right); /* | Space O(N * M) */
return memo[index][(sum + total)];
}
/**
* DP - Bottom Up
* Matrix - Tabulation
* Time O(N * M) | Space O(N * M)
* https://leetcode.com/problems/target-sum/
* @param {number[]} nums
* @param {number} target
* @return {number}
*/
var findTargetSumWays = (nums, target) => {
const total = nums.reduce((sum, num) => (sum + num), 0);/* Time O(N) */
const tabu = initTabu(nums, total); /* Time O(N * M) | Space O(N * M) */
search(nums, total, tabu); /* Time O(N * M) | Space O(N * M) */
return (Math.abs(target) <= total)
? tabu[(nums.length - 1)][(target + total)]
: 0;
};
var initTabu = (nums, total) => {
const tabu = new Array(nums.length).fill() /* Time O(N) | Space O(N) */
.map(() => new Array(((total + 1) << 1)).fill(0));/* Time O(M) | Space O(M) */
const [ left, right ] = [ (total + nums[0]), (total - nums[0]) ];
tabu[0][left] = 1; /* | Space O(N * M) */
tabu[0][right] += 1; /* | Space O(N * M) */
return tabu;
}
var search = (nums, total, tabu) => {
for (let i = 1; (i < nums.length); i++) {/* Time O(N) */
for (let sum = (-total); (sum <= total); sum++) {/* Time O(M) */
const isInvalid = (tabu[(i - 1)][(sum + total)] <= 0);
if (isInvalid) continue;
const dpSum = tabu[(i - 1)][sum + total];
const left = ((sum + nums[i]) + total);
const right = ((sum - nums[i]) + total);
tabu[i][left] += dpSum; /* Space O(N * M) */
tabu[i][right] += dpSum; /* Space O(N * M) */
}
}
}
/**
* DP - Top Down
* Array - Tabulation
* Time O(N * M) | Space O(M)
* https://leetcode.com/problems/target-sum/
* @param {number[]} nums
* @param {number} target
* @return {number}
*/
var findTargetSumWays = (nums, target) => {
const total = nums.reduce((sum, num) => (sum + num), 0);/* Time O(N) */
let tabu = getTabu(nums, total); /* Time O(M) | Space O(M) */
tabu = search(nums, total, tabu); /* Time O(N * M) | Space O(M) */
return (Math.abs(target) <= total)
? tabu[(target + total)]
: 0
}
var initTabu = (total) => new Array((total + 1) << 1).fill(0);/* Time O(M) | Space O(M) */
var getTabu = (nums, total) => {
const tabu = initTabu(total);/* Time O(M) | Space O(M) */
const [ left, right ] = [ (total + nums[0]), (total - nums[0]) ];
tabu[left] = 1; /* | Space O(M) */
tabu[right] += 1; /* | Space O(M) */
return tabu;
}
var search = (nums, total, tabu) => {
for (let i = 1; (i < nums.length); i++) { /* Time O(N) */
const num = nums[i];
const temp = initTabu(total); /* Time O(M) | Space O(M) */
tabu = update(num, total, tabu, temp); /* Time O(M) | Space O(M) */
}
return tabu;
}
var update = (num, total, tabu, temp) => {
for (let sum = (-total); (sum <= total); sum++) {/* Time O(M) */
const isInvalid = (tabu[sum + total] <= 0);
if (isInvalid) continue;
const dpSum = tabu[sum + total];
const left = ((sum + num) + total);
const right = ((sum - num) + total);
temp[left] += dpSum; /* Space O(M) */
temp[right] += dpSum; /* Space O(M) */
}
return temp;
}