mirror of
https://hub.njuu.cf/TheAlgorithms/Python.git
synced 2023-10-11 13:06:12 +08:00
Create minimum_partition.py
Partition a set into two subsets such that the difference of subset sums is minimum
This commit is contained in:
parent
ce7732605d
commit
688a9ab3bc
28
dynamic_programming/minimum_partition.py
Normal file
28
dynamic_programming/minimum_partition.py
Normal file
@ -0,0 +1,28 @@
|
||||
"""
|
||||
Partition a set into two subsets such that the difference of subset sums is minimum
|
||||
"""
|
||||
def findMin(arr):
|
||||
n = len(arr)
|
||||
s = sum(arr)
|
||||
|
||||
dp = [[False for x in range(s+1)]for y in range(n+1)]
|
||||
|
||||
for i in range(1, n+1):
|
||||
dp[i][0] = True
|
||||
|
||||
for i in range(1, s+1):
|
||||
dp[0][i] = False
|
||||
|
||||
for i in range(1, n+1):
|
||||
for j in range(1, s+1):
|
||||
dp[i][j]= dp[i][j-1]
|
||||
|
||||
if (arr[i-1] <= j):
|
||||
dp[i][j] = dp[i][j] or dp[i-1][j-arr[i-1]]
|
||||
|
||||
for j in range(s/2, -1, -1):
|
||||
if dp[n][j] == True:
|
||||
diff = s-2*j
|
||||
break;
|
||||
|
||||
return diff
|
Loading…
Reference in New Issue
Block a user