Given a set A containing n positive integers, how can I find the smallest integer >= 0 that can be obtained using all the elements in the set. Each element can be can be either added or subtracted to the total. Few examples to make this clear.

A = [ 2, 1, 3]

Result = 0 (2 + 1 - 3)

A = [1, 2, 0]

Result = 1 (-1 + 2 + 0)

A = [1, 2, 1, 7, 6]

Result = 1 (1 + 2 - 1 - 7 + 6)

link|improve this question

78% accept rate
The minimum sum would be found by taking the smallest number, then subtracting all other numbers from it. Do you mean "closest to zero"? – RB. Apr 21 '11 at 8:04
I assume you mean "the smallest sum >= 0"? – ChrisWue Apr 21 '11 at 8:04
5  
This is equivalent to the usual partition problem, which is known to be NP-complete. – Sven Marnach Apr 21 '11 at 8:09
@RB @ChrisWue Yes, smallest sum >= 0 – rohit89 Apr 21 '11 at 8:20
@Sven Marnach: Weakly NP-complete. It has a dynamic programming solution which is pseudopolynomial - O(poly(sum of numbers in the problem)). – Rafał Dowgird Apr 21 '11 at 8:49
feedback

1 Answer

You can solve it by using Boolean Integer Programming. There are several algorithms (e.g. Gomory or branch and bound) and free libraries (e.g. LP-Solve) available.

Calculate the sum of the list and call it s. Double the numbers in the list. Say the doubled numbers are a,b,c. Then you have the following equation system:

Boolean x,y,z 

a*x+b*y+c*z >= s

Minimize ax+by+cz!

The boolean variables indicate if the corresponding number should be added (when true) or subtracted (when false).

[Edit]

I should mention that the transformed problem can be seen as "knapsack problem" as well:

Boolean x,y,z 

-a*x-b*y-c*z <= -s

Maximize ax+by+cz!
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.