forked from HarshCasper/NeoAlgo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CoinChange.py
72 lines (50 loc) · 1.65 KB
/
CoinChange.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
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
''' Minimum no of coins required'''
'''Problem Statement : Given coins of different denominations with infinite supply and a total amount of money amount.
Compute the fewest number of coins required to make up that amount.
'''
#importing sys module to initalize the maxsize
import sys
# assigning max value a variable can take
INT_MAX = sys.maxsize - 1
# taking input of list of coins
print("Enter coins denominations :")
coins = list(map(int,input().split()))
print("Given coins denominations are: ",coins)
# taking input of value of coin to be changed
print("Enter the total amount:")
value = int(input())
print("Given total amount is: ", value)
# size of coins list
n = len(coins)
# constructing a matrix of size n * value
k = [[0 for i in range(value + 1)] for j in range(n + 1)]
# Bottom Up Dp Apporach
# coinchange function
def coinChange(coins,value,n):
# Initialize first row with sys.maxsize
for i in range(1,value+1):
k[0][i] =INT_MAX
# Initialize first column with 0
for j in range(n+1):
k[j][0] = 0
for i in range(1,n+1):
for j in range(1,value+1):
# checking if coins[i-1] is less than index j
if coins[i-1] <= j:
# assigning the min value
k[i][j] = min(k[i][j-coins[i-1]] + 1, k[i-1][j])
else:
# assigning the previous value from matrix
k[i][j] = k[i-1][j]
# returns value in n * value block
return k[n][value]
min_coins = coinChange(coins,value,n)
# printing the min required coins
print("Minimum coins required are {}".format(min_coins))
'''
Sample input:
coins = [1,2,5,8,10]
value = 24
Sample Output:
Minimum coins required are 3
'''