1
$\begingroup$

I have a list of numbers, finite, about 50 and I want to know which permutations with subsets of that set sum up to a given number. I found a formula for the number of ways but I don't know how to find the actual numbers. Can you help me?

  • 1
    "which permutations with subsets of that set"?2012-10-04
  • 1
    Hope http://en.wikipedia.org/wiki/Subset_sum_problem can help.2012-10-04
  • 1
    So, just to be clear, for example, you have {1, 2, 3, 4, 9, 10, 13, 18}, and you want to know how many ways you can add some subset together to get 23? And, you want to know the numbers involved as well, not just the number of ways to do it?2012-10-04
  • 0
    It's similar to the subset-sum problem and might be transformed to that. As far as I can tell you have understood the question correctly. I think it is a nice question because it is easy to understand.2012-10-04

1 Answers 1

3

I assume you mean you want to find the subsets of your list whose sum is a given number $S$. You can do it with dynamic programming. Suppose your numbers $x_1, \ldots, x_n$ are positive integers and the target sum is $s$. If $A_{k,m}$ for $1 \le k \le n$, $0 \le m \le s$, is the number of subsets of $\{x_1, \ldots, x_k\}$ whose sum is $m$, we have $A_{1,0} = A_{1,x_1} = 1$, $A_{1,m} = 0$ otherwise, and for $k \ge 2$, $A_{k,m} = A_{k-1,m} + A_{k-1,m-x_k}$ if $m \ge x_k$, $A_{k-1,m}$ if $m < x_k$.
Now if $A_{k,m} > 0$ we enumerate the subsets of $\{x_1,\ldots,x_k\}$ with sum $m$ recursively as follows: if $A_{k-1,m} > 0$, first enumerate the subsets of $\{x_1,\ldots,x_{k-1}\}$ with sum $m$; then if $m \ge x_k$ and $A_{k-1,m-x_k} > 0$ enumerate the subsets of $\{x_1,\ldots,x_{k-1}\}$ with sum $m-x_k$ and adjoin $x_k$ to each.

  • 0
    Thank you for the answer. As far as I can tell you've understood the question correctly.2012-10-04