-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcalculate-money-change-combinations.js
75 lines (67 loc) · 2.28 KB
/
calculate-money-change-combinations.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
/**
* Q. 9. How many ways can you make change with coins and a total amount?
* Suppose we have coin denominations of [1, 2, 5] and the total amount is 7. We can make changes in the following 6 ways:
* 1, 1, 1, 1, 1, 1, 1
* 1, 1, 1, 1, 1, 2
* 1, 1, 1, 2, 2
* 1, 2, 2, 2
* 1, 1, 5
* 2, 5
* Total Methods 6 Possible
* DP (Dynamic Programming)
*/
function changePossibility(coinsArr, totalAmount) {
const resultMap = new Map()
for (let i = 0; i < coinsArr.length; i++) {
let arr = []
for (let j = totalAmount; j > i; j--) {
let isPrevVal = coinsArr[i - 1]
if (isPrevVal) {
if ((getArrSum(arr) + coinsArr[i]) === totalAmount) {
arr.push(coinsArr[i])
} else {
arr.push(coinsArr[i - 1])
}
} else {
arr.push(coinsArr[i])
}
// console.log(arr)
if (getArrSum(arr) === totalAmount) {
resultMap.set(`set ${i + 1}`, [...arr]) // when SAME variable using so SPREAD is so IMPORTANT to COPY otherwise it takes Reference
// console.log('pushed')
}
}
}
return resultMap
}
function getArrSum(inputArr) {
return inputArr.reduce((p, c) => {
return p + c;
}, 0)
}
console.log(changePossibility([1, 2], 5));
// console.log(changePossibility([3, 2, 1], 5));
console.log('...............................')
function changePossibilityOpt(coinsArr, totalAmount) {
const resultArr = []
function backtrack(remainingAmount, start, combination) {
if (remainingAmount === 0) {
resultArr.push([...combination])
}
// 0; 2
for (let i = start; i < coinsArr.length; i++) {
if (coinsArr[i] <= remainingAmount) {
combination.push(coinsArr[i]); // Choose the coin
remainingAmount = remainingAmount - coinsArr[i]
backtrack(remainingAmount, i, combination); // Allow using the same coin
combination.pop(); // Undo the choice (backtrack)
}
}
}
backtrack(totalAmount, 0, []);
resultArr.forEach((v, i) =>{
console.log(`combinatino ${i+1}: ${v}`)
});
return true
}
changePossibilityOpt([1, 2, 5], 5);