I've been struggling with level 3 of the Greplin challenge. For those not familiar, here is the problem:

For the final task, you must find all subsets of an array where the largest number is the sum of the remaining numbers. For example, for an input of:

(1, 2, 3, 4, 6)

the subsets would be

1 + 2 = 3

1 + 3 = 4

2 + 4 = 6

1 + 2 + 3 = 6

Here is the list of numbers you should run your code on. The password is the number of subsets. In the above case the answer would be 4.

3, 4, 9, 14, 15, 19, 28, 37, 47, 50, 54, 56, 59, 61, 70, 73, 78, 81, 92, 95, 97, 99

I was able to code a solution that builds all 4 million plus combinations of the 22 numbers and then tests them all which will get me the right answer. Problem is it takes over 40 minutes to crunch through. Searching around the web it seems like several people were able to write an algorithm to get the answer to this in less than a second. Can anyone explain in pseudo-code a better way to tackle this than the computationally expensive brute-force method? Its driving me nuts!

link|improve this question
Can you give links to the faster solutions you found? – Cold Hawaiian Jun 15 '11 at 5:04
This is not a homework problem, and I'm not trying to get a job at Greplin. Just looking for a better solution than the one I came up with. – Josh Jun 15 '11 at 5:05
Ok. Anyways, for the purpose of encouraging more efficient answers, I'd just like to add that the brute-force method runs in exponential time in the size of the set, or to be more precise, Theta(2^n), because there are exactly 2^n possible subsets for any set of n elements. – Cold Hawaiian Jun 15 '11 at 5:09
@Cold Hawaiian - There are quite a few solutions here and one in particular that supposedly runs in .2 seconds here – Josh Jun 15 '11 at 5:11
Maybe this should be tagged as a combinatorial and algorithm problem too? – Cold Hawaiian Jun 15 '11 at 5:11
show 1 more comment
feedback

4 Answers

The trick is that you only need to keep track of counts of how many ways there are to do things. Since the numbers are sorted and positive, this is pretty easy. Here is an efficient solution. (It takes under 0.03s on my laptop.)

#! /usr/bin/python

numbers = [
    3, 4, 9, 14, 15, 19, 28, 37, 47, 50, 54, 56,
    59, 61, 70, 73, 78, 81, 92, 95, 97, 99]

max_number = max(numbers)
counts = {0: 1}
answer = 0
for number in numbers:
    if number in counts:
        answer += counts[number]
    prev = [(s,c) for (s, c) in counts.iteritems()]
    for (s, c) in prev:
        val = s+number;
        if max_number < val:
            continue
        if val not in counts:
            counts[val] = c
        else:
            counts[val] += c
print answer
link|improve this answer
0.03 second...? – Ira Baxter Jun 16 '11 at 5:14
@Ira Baxter: Yup. Try running it. I believe that most of that time is spent starting up Python. – btilly Jun 16 '11 at 6:09
That seemed awfully long. I timed mine with Python already started, using cProfile.run – Ira Baxter Jun 16 '11 at 21:50
@Ira Baxter: I just used the external time utility to time the process. – btilly Jun 17 '11 at 1:44
So that isn't a fair comparison (unrfortunately, in your disfavor) but I suspect your code is faster than mine. – Ira Baxter Jun 17 '11 at 2:36
feedback

This runs in less than 5ms (python). It uses a variant of dynamical programming called memoized recursion. The go function computed the number of subsets of the first p+1 elements, which sum up to target. Because the list is sorted it's enough to call the function once for every element (as target) and sum the results:

startTime = datetime.now()
li = [3, 4, 9, 14, 15, 19, 28, 37, 47, 50, 54, 56, 59, 61, 70, 73, 78, 81, 92, 95, 97, 99]
memo = {}
def go(p, target):
    if (p, target) not in memo:
        if p == 0:
            if target == li[0]:
                memo[(p,target)] = 1
            else:
                memo[(p,target)] = 0
        else:
            c = 0       
            if li[p] == target: c = 1
            elif li[p] < target: c = go(p-1,target-li[p])
            c += go(p-1, target)
            memo[(p,target)] = c
    return memo[(p,target)]

ans = 0
for p in range(1, len(li)):
    ans += go(p-1, li[p])

print(ans)
print(datetime.now()-startTime)
link|improve this answer
it is memoized recursion, not memorized :) – MarcoS Jun 15 '11 at 9:15
your runtime computed how? on machine? – Ira Baxter Jun 18 '11 at 5:27
I updated the code with the time computation. The machine is Dell laptop Intel Core2 Duo CPU T6400 @ 2 Ghz – Petar Ivanov Jun 18 '11 at 5:33
feedback

I used the combination generator class in Java available here:

http://www.merriampark.com/comb.htm

Iterating through the combos and looking for valid subsets took less than a second. (I don't think using outside code is in keeping with the challenge, but I also didn't apply.)

link|improve this answer
"The CombinationGenerator Java class systematically generates all combinations of n elements, taken r at a time." That's just brute-force, which in this case results in an exponential time algorithm...it can't possibly scale well to larger problem sizes, could it? – Cold Hawaiian Jun 15 '11 at 5:14
Yes, it is brute force; no it won't scale. It's just signficantly faster than the 40 minutes cited in the question. I too would like to see a better solution. – bbg Jun 15 '11 at 5:18
feedback

We know the values are nonzero and grow monontonically left to right.

An idea is to enumerate the the possible sums (any order, left to right is fine) and then enumerate the subsets to the left of of that value, because values on the right can't possibly participate (they'd make the sum too big). We don't have have to instantiate the set; just as we consider each value, see how if affects the sum. It can either be too big (just ignore that value, can't be in the set), just right (its the last member in the set), or too small, at which point it might or might not be in the set.

[This problem made me play with Python for the first time. Fun.]

Here's the Python code; according to Cprofile.run this takes .00772 seconds on my P8700 2.54Ghz laptop.

values = [3, 4, 9, 14, 15, 19, 28, 37, 47, 50, 54, 56, 59, 61, 70, 73, 78, 81, 92, 95, 97, 99]

def count():
   # sort(values) # force strictly increasing order
   last_value=-1
   duplicates=0
   totalsets=0
   for sum_value in values: # enumerate sum values
      if last_value==sum_value: duplicates+=1
      last_value=sum_value
      totalsets+=ways_to_sum(sum_value,0) # faster, uses monotonicity of values
   return totalsets-len(values)+duplicates

def ways_to_sum(sum,member_index):
   value=values[member_index]
   if sum<value:
      return 0
   if sum>value:
      return ways_to_sum(sum-value,member_index+1)+ways_to_sum(sum,member_index+1)
   return 1

The resulting count I get is 179. (Matches another poster's result.)

EDIT: ways_to_sum can be partly implemented using a tail-recursion loop:

def ways_to_sum(sum,member_index):
   c=0
   while True:
      value=values[member_index]
      if sum<value: return c
      if sum==value: return c+1
      member_index+=1
      c+=ways_to_sum(sum-value,member_index)

This takes .005804 seconds to run :-} Same answer.

link|improve this answer
++duplicates does not change the value of duplicates. ++ is not an operator in Python. ++duplicates is just an expression with that evaluates to duplicates. You need duplicates += 1. – WolframH Mar 7 at 1:48
@WolframH: OK, edited in your change. Need to see if makes a difference. – Ira Baxter Mar 7 at 2:27
feedback

Your Answer

 
or
required, but never shown

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