Special thanks to one that can help:

Partition a set of numbers (n numbers) into 2 subset so that the sum of numbers in subset 1 has the least difference with the sum of numbers in subset 2. Also the following condition is necessary:

  • If n = 2k, each subset has k members
  • If n = 2k+1, one subset has k members and the other has k+1 members.
link|improve this question
1  
This sounds like a homework assignment. – Girish Rao Feb 4 '11 at 21:31
feedback

1 Answer

This problem is NP-complete. http://en.wikipedia.org/wiki/Partition_problem You will have to find solutions by brute-force.

(The Partition problem with partitions of arbitrary size is equivalent to the problem with equal size partitions - just add a large value C to all numbers and demand that the difference be less than C...)

You might also want to have a look at the http://en.wikipedia.org/wiki/Subset_sum_problem

link|improve this answer
Are you sure that the problem is still NP-hard if you are guaranteed that the split must be as close to a 50/50 split of the elements as possible? My understanding is that the general problem allows for splits of arbitrary size. – templatetypedef Aug 30 '11 at 20:12
@templatetypedef: deciding if it is possible to split up to a certain level is the subset problem... right? – missingno Aug 30 '11 at 20:41
Sorry - to clarify, this particular problem says that the cardinalities of the two sets must be as close to each other as possible in addition to the sums of the two sets. That first condition is, IIRC, stronger than what is required for the general partition problem. – templatetypedef Aug 30 '11 at 20:47
@templatetypedef - If I want to solve the general partition problem using the restricted cardinality problem, I could just ask the card restricted problem with the same inputs n times, each time adding an additional 0 element to the input set, and take best of all the answers. Then I've essentially removed the size constraint and solved the general problem with only a polynomial number of calls to the restricted partition problem. Therefore, the size restricted partition problem is also NP complete. – rrenaud Aug 31 '11 at 3:10
feedback

Your Answer

 
or
required, but never shown

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