forked from ashvish183/Hacktoberfest2022
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCoinChange.cpp
51 lines (41 loc) · 1005 Bytes
/
CoinChange.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
// C++ program for coin change problem
#include <bits/stdc++.h>
using namespace std;
int count(int coins[], int n, int sum)
{
int i, j, x, y;
// We need sum+1 rows as the table
// is constructed in bottom up
// manner using the base case 0
// value case (sum = 0)
int table[sum + 1][n];
// Fill the entries for 0
// value case (sum = 0)
for (i = 0; i < n; i++)
table[0][i] = 1;
// Fill rest of the table entries
// in bottom up manner
for (i = 1; i < sum + 1; i++) {
for (j = 0; j < n; j++) {
// Count of solutions including coins[j]
x = (i - coins[j] >= 0) ? table[i - coins[j]][j]
: 0;
// Count of solutions excluding coins[j]
y = (j >= 1) ? table[i][j - 1] : 0;
// total count
table[i][j] = x + y;
}
}
return table[sum][n - 1];
}
// Driver Code
int main()
{
int coins[] = { 1, 2, 3 };
int n = sizeof(coins) / sizeof(coins[0]);
int sum = 4;
cout << count(coins, n, sum);
return 0;
}
// This code is contributed
// by Akanksha Rai(Abby_akku)