-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwines.js
30 lines (26 loc) · 869 Bytes
/
wines.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
// step1 write a backtrack,
// the important fact is to identify the subproblem and be convinced that there are actually
// overlapping subproblems
// step2 remove redundant variables
// identify the sub problem and hence the cache key
const backtrackWine = (start, end) => {
if (start > end) {
return 0;
}
if (cache[start][end]) {
console.log(start, end, cache[start][end]);
return cache[start][end];
}
// year depicts the level of the recursion in the tree
const year = wines.length - (end - start);
const leftSum = year * wines[start] + backtrackWine(start + 1, end);
const rightSum = year * wines[end] + backtrackWine(start, end - 1);
const max = Math.max(rightSum, leftSum);
cache[start][end] = max;
return max;
};
const wines = [2, 3, 5, 1, 4];
const cache = [];
for (let i = 0; i < wines.length; i++) {
cache[i] = [];
}