-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCoin_change_problem_least-coins_DP.cpp
50 lines (42 loc) · 1.16 KB
/
Coin_change_problem_least-coins_DP.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
#include <bits/stdc++.h>
using namespace std;
//Time Complexity: O(n*w), n is number of coins and w is sum to be paid
//Space Complexity : O(n*sum)
int findChanges(int changes[] , int sum , int n)
{
int dp[n+1][sum+1] = {0};
for(int i=0 ; i<= n ; i++)
{
for(int j=0 ; j<=sum ; j++)
{
//amount to be paid is 0
if(j == 0)
dp[i][j] = 0;
//if number of coins is 0
else if(i == 0)
dp[i][j] = INT_MAX;
//if the current coin is larger than amount
//Exclude the denomination case
else if(changes[i-1] > j)
dp[i][j] = dp[i-1][j];
else
dp[i][j] = min(dp[i-1][j] , 1 + dp[i][j - changes[i-1]]);
}
}
return dp[n][sum];
}
int main()
{
int n;
cout<<"Enter total number of different coins : ";
cin>>n;
int sum;
cout<<"Enter the sum : ";
cin>>sum;
int changes[n];
cout<<"Enter the coins : "<<endl;
for(int i=0 ; i<n ; i++)
cin>>changes[i];
cout<<"Minimum number of coins to pay "<<sum<<" is : "<<findChanges(changes , sum , n);
return 0;
}