Given a collection of positive integers, I want the subset of those integers whose sum is the smallest sum that exceeds a threshold.

link|improve this question

48% accept rate
CONTINUOUS subset or not? – Alex Weinstein Feb 25 '10 at 22:21
The subset need not be continuous – Adam Tegen Feb 25 '10 at 22:44
feedback

2 Answers

Your problem is a variation on the Subset Sum Problem and is NP-complete.

To see why, let's assume that you have an algorithm that can solve your problem and it produces an answer with sum s. Then you have proven that there exists no subset of the integers that equals s - 1, i.e. you have a solution to the subset sum problem.

If performance is not an issue, you might as well just enumerate all possible sets. If performance is an issue, you could try looking on the Wikipedia page for ideas on how to optimize this sort of algorithm, such as by using dynamic programming. The algorithm on that page should in fact solve your problem almost as efficiently as the subset sum problem.

link|improve this answer
True only if the subset is non-continuous (i.e. you can pick items number 3, 12, and 15 into your subset) – Alex Weinstein Feb 25 '10 at 22:21
feedback

"smallest sum": there's a classical "max sum" problem, described well here: http://wordaligned.org/articles/the-maximum-subsequence-problem

This is just a tiny variation with a "exceeds a threshold" condition - just an extra IF statement in your loop.

link|improve this answer
I'm not looking for a contiguous subsequence – Adam Tegen Feb 26 '10 at 14:51
feedback

Your Answer

 
or
required, but never shown

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