-
Notifications
You must be signed in to change notification settings - Fork 0
/
coinChange.cpp
90 lines (71 loc) · 1.59 KB
/
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n,amount;
cout << "Enter The number Of coins: ";
cin >> n;
cout << "Enter The Amount: ";
cin >> amount;
cout << "Enter the coins: ";
int arr[n];
for(int i = 0; i<n ; i++)
{
cin >> arr[i];
}
int tabler_method[n+1][amount+1];
//char tracker[n+1][m+1];
for(int i =0; i<=n; i++)
{
tabler_method[i][0]=0;
}
tabler_method[0][0]=0;
for(int i =1; i<=amount; i++)
{
tabler_method[0][i]=amount+1;
}
for(int i =1; i<=n; i++)
{
int v = arr[i-1];
for(int j = 1; j<=amount; j++)
{
if(arr[i-1] <= j)
{
tabler_method[i][j] = min( tabler_method[i-1][j], tabler_method[i][j-v]+1);
}else
{
tabler_method[i][j] = tabler_method[i-1][j];
}
}
}
for(int i =0; i<=n; i++)
{
for(int j = 0; j<=amount; j++)
{
cout << tabler_method[i][j] << " ";
}
cout << endl;
}
cout << "The minimum Number of Coins: " << tabler_method[n][amount] << endl;
int i = n;
int j = amount;
while( i>0 && j>0 )
{
if(tabler_method[i][j]!=tabler_method[i-1][j])
{
cout << arr[i-1] << " ";
j-=arr[i-1];
}else
{
i--;
}
}
cout << endl;
return 0;
}
/*
Input Value:
Coins: 1 5 6 9
Amount: 10
Answer: 22
*/