Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
5answers
621 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). ...
8
votes
4answers
4k views

Algorithm to find subset within two sets of integers whose sums match

I'm looking for an algorithm which can take two sets of integers (both positive and negative) and find subsets within each that have the same sum. The problem is similar to the subset sum problem: ...
7
votes
4answers
1k 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 ...
7
votes
7answers
649 views

How would I find all sets of N single-digit, non-repeating numbers that add up to a given sum in PHP?

Let's say I want to find all sets of 5 single-digit, non-repeating numbers that add up to 30... I'd end up with [9,8,7,5,1], [9,8,7,4,2], [9,8,6,4,3], [9,8,6,5,2], [9,7,6,5,3], and [8,7,6,5,4]. Each ...
6
votes
1answer
186 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 ...
6
votes
5answers
887 views

The subsets-sum problem and the solvability of NP-complete problems

I was reading about the subset-sums problem when I came up with what appears to be a general-purpose algorithm for solving it: (defun subset-contains-sum (set sum) (let ((subsets) (new-subset) ...
5
votes
1answer
186 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; ...
5
votes
4answers
1k views

Equal sum subsets hybrid

The problem is the following: You are given a set of positive integers { a1 , a2 , a3 , ... , an } in which there are no same numbers ( a1 exists only once ,a2 exists only once,...) eg A = {12 , 5 ...
4
votes
3answers
213 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 ...
4
votes
4answers
416 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 ...
4
votes
7answers
1k views

Is this variant of the subset sum problem easier to solve?

I have a problem related to the subset sum problem and am wondering if the differences make it easier, i.e. solvable in a reasonable amount of time. Given a value V, a set size L, and a sequence of ...
3
votes
3answers
258 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 ...
3
votes
2answers
178 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, ..., ...
3
votes
2answers
370 views

example about array in java

assume that i have an array int [] arr={1,2,4,5,7} and also have number 6 so i need the result to be 01100 that means that 2+4=6 in the array so the result will be 1 if the number in the sum 0 ...
3
votes
3answers
1k views

Is my subset sum algorithm of polynomial time?

I came up with a new algorithm to solve the subset sum problem, and I think it's in polynomial time. Tell me I'm either wrong or a total genius. Quick starter facts: Subset sum problem is an ...
2
votes
4answers
118 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 ...
2
votes
1answer
171 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 ...
2
votes
4answers
248 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 ...
2
votes
2answers
243 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 ...
2
votes
2answers
128 views

Scheme Syntax Help: Using a function that I have defined in another program

I have created two functions to help me solve my Subset sum problem. I seem to be getting an error though. It tells me that I am passing two arguments to list-sum. I've been fooling around with this ...
2
votes
2answers
231 views

Subset whose sum is the smallest sum over a specific threshold

Given a collection of positive integers, I want the subset of those integers whose sum is the smallest sum that exceeds a threshold.
2
votes
2answers
483 views

Finding a subset of numbers that equals a single number

The reason I place this post is that I am looking to reconcile customer accounts receivable accounts where "payments" are posted to accounts instead of matched with the open invoices and cleared. So ...
1
vote
0answers
149 views

Subset sum, Pseudo-polynomial time dynamic programming solution? [closed]

I found the P vs NP problem some time ago and I have recently worked on the subset sum problem. I have read Wikipedia article on the Subset Sum problem as well as the question Subset Sum Algorithm I ...
1
vote
1answer
25 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
274 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 ...
1
vote
3answers
388 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 ...
1
vote
1answer
169 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? ...
1
vote
2answers
1k views

How to implement the Sum of Subsets problem in Java

Does anyone know how to implement the Sum-of-Subsets problem in Java from this pseudo code? w = an array of positive integers sorted in non-decreasing order. W = the target sum value include = an ...
1
vote
2answers
96 views

Is this an NP problem?

first off I'm going to say I don't know a whole lot about theory and such. But I was wondering if this was an NP or NP-complete problem. It specifically sounds like a special case of the subset sum ...
1
vote
1answer
380 views

SUBSET-SUM, upper bound on number of solutions

As you probably know, the SUBSET-SUM problem is defined as determining if a subset of a set of whole numbers sum to a specified whole number. (there is another definition of subset-sum, where a group ...
1
vote
1answer
416 views

Subset Sum TI Basic Programming

I'm trying to program my TI-83 to do a subset sum search. So, given a list of length N, I want to find all lists of given length L, that sum to a given value V. This is a little bit different than ...
1
vote
1answer
394 views

Find subset totals for huge data set

1st of all: I'm not a programmer, never learnt programming/algorithms. Actually I have to program, mostly in awk, or ruby, some bash. In today's task, I have a huge data set (float numbers) in a ...
0
votes
1answer
84 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 = ...
0
votes
1answer
32 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 ...
0
votes
5answers
80 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 ...
0
votes
1answer
167 views

Divide a set of numbers into k subsets such that values are evenly distributed [closed]

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 ...
0
votes
1answer
267 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 ...
0
votes
2answers
296 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 ...
0
votes
1answer
266 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 ...
0
votes
2answers
241 views

Maximum two-dimensional subset-sum

I'm given a task to write an algorithm to compute the maximum two dimensional subset, of a matrix of integers. - However I'm not interested in help for such an algorithm, I'm more interested in ...
0
votes
1answer
461 views

equal k subsets algorithm

does anyone know a good and efficient algorithm for equal k subsets algorithm ? preferably c or c++ which could handle a 100 element vector maybe with a complexity and time estimation ex. 9 element ...
0
votes
1answer
473 views

Subset Problem — Any Materials?

Yes this is a homework/lab assignment. I am interesting in coming up with/finding an algorithm (I can comprehend :P) for using "backtracking" to solve the subset sum problem. Anyone have some ...
-1
votes
1answer
173 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 ...