-
Notifications
You must be signed in to change notification settings - Fork 0
/
CoinChangeNumberOfWays.cpp
40 lines (31 loc) · 913 Bytes
/
CoinChangeNumberOfWays.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
#include <bits/stdc++.h>
using namespace std ;
int table [100];
int count( int S[], int m, int n )
{
// table[i] will be storing the number of solutions for
// value i. We need n+1 rows as the table is constructed
// in bottom up manner using the base case (n = 0)
// int table[n+1];
// Initialize all table values as 0
// memset(table, 0, sizeof(table));
// Base case (If given value is 0)
table[0] = 1;
// Pick all coins one by one and update the table[] values
// after the index greater than or equal to the value of the
// picked coin
for(int i=0; i<m; i++) {
for(int j=S[i]; j<=n; j++)
table[j] += table[j-S[i]];
}
return table[n];
}
int main()
{
int arr[] = {2,3,5};
int m = sizeof(arr)/sizeof(arr[0]);
int n = 11;
int ans=count(arr, m, n);
cout <<ans<<endl;
return 0;
}