Tagged Questions

13
votes
14answers
5k views

Algorithm to Divide a list of numbers into 2 equal sum lists

There is a list of numbers. The list is to be divided into 2 equal sized lists, with a minimal difference in sum. The sums have to be printed. #Example: >>>que = [2,3,10,5,8,9,7,3,5,2] ...
4
votes
1answer
350 views

Algorithm to get every possible subset of a list, in order of their product, without building and sorting the entire list (i.e Generators)

Practically, I've got a set of objects with probabilities, and I want to look at each possible group of them, in order of how likely it is that they're all true assuming they're independent -- i.e. in ...
2
votes
3answers
64 views

Combinations of weighted elements in a set where weighted sum equal to fixed integer (in python)

I would like to find all the possible combinations of weighted elements in a set where the sum of their weights is exactly equal to a given weight W Say I want to select k elements from the set { ...
2
votes
1answer
400 views

knapsack problem (classic)

So I have to solve the knapsack problem for class. So far, I've come up with the following. My comparators are functions that determine which of two subjects will be the better option (by looking at ...
1
vote
1answer
168 views

greedy multiple knapsack (minimize/reduce number of bins)

actually, I already have a partial answer for this question, but I'm wondering if this small piece of greedy code can be generalized to something closer to the optimal solution. how I met this ...
1
vote
2answers
80 views

Find tracks that match group by length

can someone please come up with a solution to this problem, in programming language of choice (preferably Python, but anything could be fine I guess): I have various track length groups, let's say: ...
0
votes
1answer
82 views

Keeping Track of Dynamic Programming Steps

I'm teaching myself basic programming principles, and I'm stuck on a dynamic programming problem. Let's take the infamous Knapsack Problem: Given a set of items, each with a weight and a value, ...