SPOJ 8545. Subset Sum (Main72) with Dynamic Programming and F#

The Subset Sum (Main72) problem, officially published in SPOJ, is about computing the sum of all integers that can be obtained from the summations over any subset of the given set (of integers). A naïve solution would be to derive all the subsets of the given set, which unfortunately would result in

time complexity, given that

is the number of elements in the set.

This post outlines a more efficient (pseudo-polynomial) solution to this problem using Dynamic Programming and F#. Additionally, we post C# code of the solution.

see Party Schedule post

Note that we have solved a similar problem in Party Schedule (PARTY) with F# blog-post.

Interpretation

This problem provides a set of integers

, and specifies the following constraints--

noun_project_6403 (1)

The size of the given set, i.e.,

, where the value of

is bounded by:

.

noun_project_6403 (1)

, the following condition holds:

.Given this input, we would like to find all the integers:

and

is the sum of the items of any subset over

. Afterward, we sum all these integers, and return it as the result to the problem instance.

In essence, we reduce this problem as follows: Given

, can we express it using any subset over

? If yes, we include it in the solution set for summation. Interestingly, we  realize that the stated problem is a special case of a more general problem called Subset Sum, given that the sum is

.

Algorithm

What would be the maximum possible value for

? Indeed,

is not practical at all, as

can be bounded by the following upper limit:

, i.e., the summation of all the items in

. This observation effectively reduces the search space to

, for a given

.

It implies that a naïve algorithm would require to iterate all the subsets over

and verify whether their sum is within

. Recall that, due to its exponential time complexity, it is quite impractical .

Using dynamic programming technique, a pseudo-polynomial algorithm can be derived, as the problem has an inherent optimal substructure property. That is, a solution of an instance of the problem can be expressed as the solutions of its subproblems, as described next.

We define

as the function that determines whether the summation over any subset

can result in the integer

. So, it yields

if sum

can be derived over any subset

, otherwise,

. Also, note that,

and

.

To define the recurrence, we describe

in terms of its smaller subproblems as follows.

image

In Eq. (1), the first case refers to the fact that

is larger than

. Consequently,

can not be included in the subset to derive

. Then, the case 2 of Eq. (1) expresses the problem

into two subproblems as follows: we can either ignore

though

, or we can include it. Using any case stated in Eq. (1), if we can derive

i.e.

= true, we can include it in the solution set.

As we can see overlapping subproblems, we realize that we can effectively solve them using a bottom-up dynamic programming approach. What about the base cases?

image

Using a table-- dp, we can implement the stated algorithm as follows.

[gist 5043766]

In essence, the Nth row in the table provides the set of integers that can be derived by summing over any subset

. Thereby, we compute the summation of all these integers that satisfies subsum(N,j) = true, and returns it as the result.

ConclusionFull source code of the solution can be downloaded from this gist. For C# source code, please visit following gist. Please leave a comment if you have any question/suggestion regarding this post.

Enough said… now, it’s time for a

34-coffee

and a new problem. See you soon; till then, happy problem-solving!


See Also

see SPOJ 97. Party Schedule (PARTY) with F#

SPOJ 97. Party Schedule (PARTY) with F#.

see UVa 10664. Luggage

UVa 10664. Luggage.