Skip to content

Commit

Permalink
Create minimum_partition.py
Browse files Browse the repository at this point in the history
Partition a set into two subsets such that the difference of subset sums is minimum
  • Loading branch information
dhruvsaini authored Jan 3, 2017
1 parent ce77326 commit 688a9ab
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions dynamic_programming/minimum_partition.py
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 688a9ab

Please sign in to comment.