The subset-sum tag has no wiki summary.
0
votes
0answers
55 views
Recursive sum of subsets
I have read through some other discussions, but cannot figure how to fix my program. As it recurses, my index counter eventually gets too large and promising does not work since it is out of bounds ...
1
vote
1answer
73 views
Sum Of Subsets Program
I am new to C++ and am writing a sum of subsets program that takes in a user defined set of numbers, the first number of which is considered to be the total. I have tried using DDD to debug this ...
0
votes
2answers
59 views
How to get s subset sum to print out the integers it used (python)
So here is the code that i have so far. It works and returns true if the sum exists but i cant seem for the life of me to find a way for it to print out the integers it used to find the sum. Is there ...
2
votes
3answers
313 views
Understanding Sum of subsets
I've just started learning Backtracking algorithms at college. Somehow I've managed to make a program for the Subset-Sum problem. Works fine but then i discovered that my program doesn't give out all ...
1
vote
3answers
265 views
Count the number of ways to make changes
I have a set of coins 1,2, 4, 10, 20, 40, 100, 200, 400, 1000, 2000 cents. I want to find out how many ways to pays for a certain amount (<= 6000). My current solution in c++ is using dynamic ...
6
votes
1answer
241 views
Finding set of pairs that correspond to list of sums
Given two lists of numbers and a list of totals (none in any particular order):
a = [1,2,3]
b = [4,5,6]
c = [6,7,8]
How can I find all sets of pairs d where d[k] = (a[i], b[j]) such that c[k] = ...
-1
votes
2answers
119 views
Algorithm for finding a sum within an array? [closed]
Say you have some array with elements that you know are all positive, and smaller than a number N.
Can someone give me a general, high-level description of an algorithm to find out whether there is ...
0
votes
3answers
148 views
How to find combination of segments to build a track: possible Subset Sum
There are many Subset-sum questions and answers around at SO, but somehow I can't find a solution for my specific problem.
I need to find the quantity and length of track-segments to build a track ...
0
votes
1answer
192 views
How to understand the subset-sum issue
I was learning subset sum problem ,and i'd like to ask some question here
(1) Subset Sum algorithm
I read the C code in this link just now,and I wonder that why author can define?
S[i,0]=true ...
2
votes
1answer
162 views
This puzzle- subset sum?
In today's edition of the Guardian (a newspaper in the UK), in the "Pyrgic puzzles" section on page 43 by Chris Maslanka, the following puzzle was given:
The 3 wise men ... went to Herrods to do ...
0
votes
1answer
176 views
Subset sum recursively to get as near as possible to a given number [duplicate]
Possible Duplicate:
Subset Sum algorithm
I have a very easy problem which I can't figure out. I'm given an array of numbers and a value I need to get as close as possible to by making ...
0
votes
0answers
138 views
Recursion: subset sum algorithm setting value in parameters
How do I reset the value of blockIndex to its inital state when I call the method?
Say if I call it and pass in the value 4. I check if that value is greater than 9, if not I add the element at ...
0
votes
5answers
250 views
Recursion: Understanding (subset-sum) inclusion/exclusion pattern
I need to understand how this recursion work, I understand simple recursion examples but more advanced ones is hard. Even thought there are just two lines of code I got problem with... the return ...
2
votes
2answers
291 views
Subset sum with special conditions
(Before you reply with a link to another SO question or close this as a duplicate please read the question carefully. This is different than the standard variant of this problem and I've searched for ...
1
vote
1answer
133 views
Verify whether a multiset is the union of the subset sum of another multiset
I want to figure out an algorithm to verify whether a multiset is the union of the subset sum of another multiset, but I failed after struggling for several hours by myself.
The details is as ...
2
votes
1answer
176 views
Algorithm to check for a linear sum to zero
Given a list of N non-negative integers, propose an algorithm to check if the sum of X numbers from the list equals the remaining N-X.
In other words, a simpler case of the Subset sum problem which ...
0
votes
0answers
180 views
Building sentences from a word dictionary and letter frequencies [closed]
Peace to all,
I have a dictionary of 78,000 words and 14 letters with different frequncies that add up to 78 total letter including repetitions (but not all letters of the alphabet).
I would like to ...
1
vote
0answers
149 views
Pseudo polynomial or fast solution for the multiobjective subset-sum
I am looking for a fast solution for a multiple/multiobjective subset-sum problem.
As aditional restraints (which make a litte easier to calculate IMO) we can assume that all values included in the ...
1
vote
1answer
197 views
Ideas Related to Subset Sum with 2,3 and more integers
I've been struggling with this problem just like everyone else and I'm quite sure there has been more than enough posts to explain this problem. However in terms of understanding it fully, I wanted to ...
4
votes
3answers
526 views
Dynamic programming sum
How would you use dynamic programming to find the list of positive integers in an array whose sum is closest to but not equal to some positive integer K?
I'm a little stuck thinking about this.
2
votes
3answers
3k views
given a set of n integers, return all subsets of k elements that sum to 0
given a unsorted set of n integers, return all subsets of size k (i.e. each set has k unique elements) that sum to 0.
So I gave the interviewer the following solution ( which I studied on ...
2
votes
1answer
1k views
Fast solution to Subset sum algorithm by Pisinger
This is a follow-up to my previous question. I still find it very interesting problem and as there is one algorithm which deserves more attention I'm posting it here.
From Wikipedia: For the case ...
2
votes
1answer
601 views
Subset sum for exactly k integers?
Sorry for potential spamming, but I did not manage an exact solution to my problem on StackOverflow. If there is, please by all means close my questions and post a link. Thanks.
Following from these ...
8
votes
5answers
3k views
Fast solution to Subset sum
Consider this way of solving the Subset sum problem:
def subset_summing_to_zero (activities):
subsets = {0: []}
for (activity, cost) in activities.iteritems():
old_subsets = subsets
...
2
votes
4answers
541 views
List of subsets of which their elements add up to n using recursion
I'm writing this function which I want to print all the sublists of a given list with integers. The sum of these integers should be equal to a given number n. There is also a help variable i which ...
1
vote
1answer
76 views
How to quickly tell if any any subset of this set satisfy this condition?
I know this is an NP-hard problem, but a lot of our users have been requesting this feature (basically, does any set of the items in your current order qualify for one of the deals we have running? Or ...
0
votes
1answer
303 views
Cards Game - Subset Sum - Can the following algorithm be optimized?
Ok, the cards game I'm developing is pretty similar to Scopa if someone knows it.
The deck contains 40 cards divided into 4 different suits of 10 cards each (ace => value 1, two => value 2, three = ...
3
votes
3answers
2k views
Subset sum recursively in Python
I will be happy to get some help.
I have the following problem:
I'm given a list of numbers seq and a target number and I need to write 2 things:
A recursive solution that returns True if there is ...
2
votes
4answers
291 views
Anagram generation - Isnt it kind of subset sum?
Anagram:
An anagram is a type of word play, the result of rearranging the
letters of a word or phrase to produce a new word or phrase, using
all the original letters exactly once;
Subset ...
6
votes
1answer
377 views
Does a combination of K integers exist, so that their sum is equal to a given number?
I've been breaking a sweat over this question I've been asked to answer (it's technically homework).
I've considered a hashtable but I'm kind of stuck on the exact specifics of how I'd make this work
...
7
votes
2answers
371 views
Finding a subset which satisfies a certain condition
I have several arrays of numbers (each element of the array can only take a value of 0 or 1) like this
v1: 1; 0; 0; 1; 1;
v2: 0; 1; 0; 0; 1;
v3: 1; 1; 0; 1; 0;
v4: 1; 0; 0; 1; 0;
v5: 1; 1; 0; ...
1
vote
1answer
52 views
Effect of number base when proving NP completeness of numerical problems
I am reading about NP completeness from the algorithm design book of tardos, In the section of proving subset sum is NP complete, it is written that -
The algorithm developed for subset sum has ...
1
vote
3answers
2k views
How does this solution of the subset sum problem work?
this is a solution for the subset sum problem. It uses backtracking. I have been thinking about it for more than 2 hours now and i just cannot understand it.
edit:I have added some comments to the ...
0
votes
1answer
80 views
Auto Belt Width Algorithm
I would really appreciate some comments about this practical problem.
Quick description.
I have a variable number of links that can be used to make up a given belt width. The question is, how many ...
4
votes
2answers
640 views
Maximum subset sum with two arrays
I am not even sure if this can be done in polynomial time.
Problem:
Given two arrays of real numbers,
A = (a[1], a[2], ..., a[n]),
B = (b[1], b[2], ..., b[n]), (b[j] > 0, j = 1, 2, ..., ...
-1
votes
1answer
258 views
Updated: subsetSum
Trying to write algorithm for subsetSum... It should find all possible subsets of a given vector, then find which ones add up to a target value. However, I keep getting nullpointerexceptions, and a ...
0
votes
5answers
173 views
Vectors within a vector
I have this code...that does just about exactly what I need it to. It searches a predefined array of ints for two ints that sum up to a target int. However, when putting values into the vector, rather ...
2
votes
1answer
360 views
Subset-sum problem in PHP with MySQL
following Problem:
I have a MySQL database with songs in it. The database has the following structure:
id INT(11)(PRIMARY)
title VARCHAR(255)
album VARCHAR(255)
track INT(11)
duration INT(11)
The ...
0
votes
1answer
424 views
Divide a set of numbers into k subsets such that values are evenly distributed [duplicate]
Possible Duplicate:
equal k subsets algorithm
Say I've a set of numbers, I want to divide the numbers into k subsets such that the numbers are evenly distributed. By evenly distributed, I ...
5
votes
3answers
567 views
custom partition problem
Could some one guide me on how to solve this problem.
We are given a set S with k number of elements in it.
Now we have to divide the set S into x subsets such that the difference in number of ...
0
votes
1answer
577 views
Solution to Subset Sum problem with high sums and decimal places
Looking for a solution to the subset sum problem for this specific case (in C# or else algorithm):
1) There are about 1,000 numbers in set (might grow to few thousand)
2) Sums run into the billions
...
2
votes
4answers
709 views
Find smallest subset sum matching another subset sum
I have a real-world problem (not homework!) that requires finding the sum of a subset of set A that equals the sum of a subset of some other set B.
A very similar question with a helpful answer is ...
5
votes
6answers
1k views
Subset Problem - Greplin Challenge
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 ...
0
votes
2answers
1k views
Subsets of a given Set of Integers whose sum is a Constant N : Java
Given a set of integers, how to find a subset that sums to a given value...the subset problem ?
Example : S = {1,2,4,3,2,5} and n= 7
Finding the possible subsets whose sum is n.
I tried to google out ...
1
vote
3answers
795 views
Genetic algorithm - Subset sum problem
I have to do a project which using a genetic algorithm solves the subset sum problem. Unfortunately, when coding the algorithm I found a big problem ...
My algorithm:
as long as no solution was ...
7
votes
4answers
3k views
Subset sum Problem
recently I became interested in the subset-sum problem which is finding a zero-sum subset in a superset. I found some solutions on SO, in addition, I came across a particular solution which uses the ...
15
votes
5answers
1k views
Find the minimum number of elements required so that their sum equals or exceeds S
I know this can be done by sorting the array and taking the larger numbers until the required condition is met. That would take at least nlog(n) sorting time.
Is there any improvement over nlog(n).
...
1
vote
1answer
305 views
How to get some subset from a set? (Algorithm needs…)
There is a version of the subset problem that asks if it is possible to find a subset of a set of integers that add up to the sum of the numbers not in the subset. Anyone know what the algorithm is?
...
0
votes
1answer
424 views
Subset sum problem where each number can be added or subtracted
Given a set A containing n positive integers, how can I find the smallest integer >= 0 that can be obtained using all the elements in the set. Each element can be can be either added or subtracted to ...
2
votes
2answers
347 views
How to express 2n as sum of n variables (Java implementation?)
I wonder if there is an elegant way to derive all compositions of 2n as the sum of n non-negative integer variables.
For example, for n = 2 variables x and y, there are 5 compositions with two parts ...

