-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaking_change.py
46 lines (41 loc) · 1.34 KB
/
making_change.py
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
"""
Suppose customer has purchased some items from Mall. He has the
bill of Rs. 732 to be paid at the billing counter. Customer has the options in
his wallet of Rs. {500, 100, 50, 20, 10, 1}. Your problem is to devise an
algorithm for paying a given amount to billing counter using the smallest
possible number of coins. You can use one option more than once.
"""
def Coins(N, d):
c = [[] for i in range(len(d))]
for i in range(len(d)):
for j in range(N+1):
c[i].append(0)
for i in range(1, len(d)):
c[i][0] = 0
for i in range(len(d)):
for j in range(1, N+1):
if i == 0 and j < d[i]:
c[i][j] = 99
elif i == 0:
c[i][j] = 1+c[i][j-d[i]]
elif j < d[i]:
c[i][j] = c[i-1][j]
else:
c[i][j] = min((c[i-1][j]), (1+c[i][j-d[i]]))
# for i in range(len(c)):
# print(c[i])
print("\nTotal coins:"+str(c[len(d)-1][N])+"\n")
try:
N = int(input("N:"))
len_list = int(input("Enter no of n:"))
if len_list < 0:
print("Sorry,negative size")
else:
d = []
for i in range(0, len_list):
k = int(input("Enter n"+str(i+1)+": "))
d.append(k)
print("n = ", d)
Coins(N, d)
except ValueError:
print('Please input a valid integer')