An interesting variation of the subset sum problem was presented to me by a friend from work:

Given a set S of positive integers, of size n, and integers a and K, is there a subset R (of the set S) that contains exactly a elements, whose sum is equal to K?

He claims that this can be done with time complexity O(nka), I was unable to come up with a dynamic programming algorithm that achieved this running time. Can it be done?

link|improve this question

71% accept rate
1  
This is not off-topic, but you may get better answers on cstheory.stackexchange.com. – Björn Pollex Nov 2 '10 at 10:21
1  
Is there any restriction on the range of numbers? – Shamim Hafiz Nov 2 '10 at 10:21
@Gunner, I think we can assume positive numbers (will edit) @Space_C0wb0y, Thanks! – ntsue Nov 2 '10 at 10:25
a disjoint element? – Saeed Amiri Nov 2 '10 at 10:38
feedback

2 Answers

up vote 3 down vote accepted

It can be done if k and a are small enough, so that we can declare an array

bool found[a][k]

You would iterate over each value in S and iterate over every state in the found array to obtain a new state.

Say, for the indexes of a=1 and k = 7, and the current value from S being 7,

if found[1][7] is true, then you can also be sure that found[2][14] is also true.

When the iteration ends, all you need to do is check that [a][k] is true or not.

link|improve this answer
Thank you, this seems to work! – ntsue Nov 2 '10 at 11:14
Your Welcome :) – Shamim Hafiz Nov 2 '10 at 11:52
Not sure that this approach meets the time complexity bound, since it looks like you have to iterate over subsets of S, not individual elements. – user486972 Nov 2 '10 at 15:54
Not really, I am iterating over elements of S and not subset. – Shamim Hafiz Nov 3 '10 at 7:38
Nice DP solution. +1 ;) – MAK Nov 6 '10 at 17:43
feedback

Let S = {s1,\ldots,sn}

Let P(j,K,a) be true iff it is possible to find a elements in s1,\ldots,sj that sum up to K.

Then P(j,K,a) = P(j-1, K-sj, a-1) OR P(j, K, a) (either sj is needed or it is not needed).

The algorithm then consists of filling out 3-D table of dimension n by K+1 by a+1. Each entry takes constant time to fill, hence the time (and space) complexity is O(nKa)

link|improve this answer
When I read the above marked answer, this is how I interpreted/implemented it. Thank you! – ntsue Nov 2 '10 at 18:13
feedback

Your Answer

 
or
required, but never shown

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