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] ...
10
votes
4answers
342 views

Can bottom-up dynamic programming be done in Lisp?

Can a typical Lisp dialect solve problems using the bottom-up "dynamic programming" approach? (Please note: I'm not talking about "memoization" which, as far as I understand, is trivial using any ...
9
votes
3answers
475 views

Divide people into teams for most satisfaction

Just a curiosity question. Remember when in class groupwork the professor would divide people up into groups of a certain number (n)? Some of my professors would take a list of n people one wants to ...
6
votes
6answers
349 views

Knapsack with continuous (non distinct) constraint

I watched Dynamic Programming - Kapsack Problem (YouTube). However, I am solving a slightly different problem where the constraint is the budget, price, in double, not integer. So I am wondering how ...
6
votes
3answers
271 views

0-1 Knapsack algorithm

Is the following 0-1 Knapsack problem solvable: 'float' positive values and 'float' weights (can be positive or negative) 'float' capacity of the knapsack > 0 I have on average < 10 items, so ...
6
votes
3answers
610 views

divide list in two parts that their sum closest to each other

This is a hard algorithms problem that : Divide the list in 2 parts (sum) that their sum closest to (most) each other list length is 1 <= n <= 100 and their(numbers) weights 1<=w<=250 ...
5
votes
5answers
312 views

Hockey pool Algorithm

This is a little fun project that I have started to try and maximize my chances of winning our office hockey pool. I'm trying to find the best way to select 20 players that will give me the most ...
5
votes
2answers
443 views

C# 0-1 Knapsack Problem with known sum and number of zeros in set

I have a 5x5 table of values from 0 to 3 inclusive with all values unknown. I know both the sum of the values and the number of zeros for each row and column. How would I go about solving this 0-1 ...
5
votes
1answer
578 views

Cutting Stock Problem

Does anyone know how to implement the algorithm for this problem using the Knapsack algorithm? The method I'm using at present makes extensive use of LINQ and Collections of Collections and a few ...
5
votes
2answers
421 views

Algorithm design: can you provide a solution to the multiple knapsack problem?

I am looking for a pseudo-code solution to what is effectively the Multiple Knapsack Problem (optimisation statement is halfway down the page). I think this problem is NP Complete so the solution ...
4
votes
2answers
296 views

Cutting Stock Problem

I'm trying to nest material with the least drop or waste. Table A Qty Type Description Length 2 W 16x19 16' 3 W 16x19 12' 5 W 16x19 5' 2 W 5x9 3' ...
3
votes
2answers
524 views

Solving a variation of 0/1 Knapsack Problem (multiple source for items, each item can be selected from one of the sources)

So for a practice question, we are supposed to design a Dynamic Programming algorithm which is a variation of 0/1 knapsack problem... Basically each item comes from 4 different source, and that item ...
2
votes
2answers
140 views

Forming Dynamic Programming algorithm for a variation of Knapsack Problem‍​​

So I was thinking, I wanted to do a variation on the Knapsack Problem. Imagine the original problem, with items with various weights/value. My version will, along with having the normal ...
2
votes
4answers
522 views

What is a good algorithm for compacting records in a blocked file?

Suppose you have a large file made up of a bunch of fixed size blocks. Each of these blocks contains some number of variable sized records. Each record must fit completely within a single block and ...
1
vote
1answer
118 views

Multiple Choice Knapsack

So the standard multiple choice knapsack problem allows 1 item to be chosen from each class to create an optimal knapsack. However, how would I go about modifying this algorithm to allow 0 or 1 items ...
1
vote
3answers
96 views

How can I efficiently find the subset of activities that stay within a budget and maximizes utility?

I am trying to develop an algorithm to select a subset of activities from a larger list. If selected, each activity uses some amount of a fixed resource (i.e. the sum over the selected activities must ...
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: ...
1
vote
3answers
235 views

Looking for suggestions on understanding a particular combinatorial optimization problem

Given a set of items (sized anywhere from 1 to 100) and a number of bins (1 to 15.) Each item having a subset of bins the item can be assigned to and a preference ordering of which bin is best, second ...
1
vote
1answer
208 views

Knapsack problem with all profits equal to 1

There is a variation of knapsack problem when all profits are equal to 1. It seems it can be solved much faster than classical discrete (0-1) knapsack problem, but how? Will just greedy algorithm work ...
1
vote
1answer
436 views

Algorithm that is a combination of the continuous knapsack problem and the variable size bin packing problem

I'm trying to solve a problem (in php, but programming language doesn't matter). I'm having a n number of persons that have paid money, and I have got a m number of persons that are going to pay the ...
1
vote
0answers
201 views

How do I solve the linear programming relaxed MKP?

I am studying about Knapsack problem. So I do not understand one thing here. The profit/pseudo-resource consumption ratios Uj = Pj / Wj with Wj = Rji * Aj I hope so you people know this ...
1
vote
4answers
2k views

Multiple Constraint Knapsack Problem

If there is more than one constraint (for example, both a volume limit and a weight limit, where the volume and weight of each item are not related), we get the multiply-constrained knapsack problem, ...
0
votes
1answer
60 views

How to trace Knapsack [thingy] using greedy algorithm?

The question is how to trace a Knapsack problem with greedy algorithm using the following information? P=[10,7,12,13,6,20] W=[3,2,4,3,13,8] M=15 n=6 I'd appreciate it if some one could help me ...
0
votes
1answer
71 views

Knapsack DP How to find total number of value taken?

It's like Maximum weight 3 Value Weight 1955 1 2000 5 101 1 Take the first and the third. but can't find away to find total value. 1955+101. i use Knapsack 0-1. is there anyway to ...
0
votes
1answer
122 views

Knapsack 0/1 algorithm - unlimited resources

I've run into a thinking trouble and I'm just frustrated. I have a working algorithm of the knapsack problem, using dynamic programming, where I specify Max load Items (their weight) and the ...
0
votes
2answers
163 views

Brute force implementation for 0-1 Knapsack

I'm struggling with the given task for almost a week without success of finding solution so this site is my last hope. I have 0-1 Knapsack problem which has 20 items with different values and ...
0
votes
2answers
71 views

Variation on knapsack - minimum total value exceeding 'W'

This arose in a programming puzzle. I'm new to the knapsack problem, and can't figure out how to adapt it to this situation. (This looks to me like a variation of the integer/unbounded knapsack ...
0
votes
3answers
255 views

How do I solve the 'classic' knapsack algorithm recursively?

This is my task The Knapsack Problem is a classic in computer science. In its simplest form it involves trying to fit items of different weights into a knapsack so that the knapsack ends up ...
0
votes
1answer
54 views

Resource distribution w.r.t. individual capacity - is it a Knapsack problem?

I have a problem as follows: I have few office locations and resources with different capabilities (integer numbers). I want to distribute all the resources to different office locations to find the ...
0
votes
0answers
251 views

Knapsack Problem new algorithm real numbers [closed]

I think that i made algorithm for solving Knapsack Problem in Time and Memory complexity less or equal to complexity of DP algorithms. The beauty is that you can solve cases with real numbers ! Can ...
0
votes
1answer
111 views

Sorting and Balancing Across Multiple Columns

Problem I have a Hash of data that looks something like this. { "GROUP_A" => [22, 440], "GROUP_B" => [14, 70], "GROUP_C" => [60, 620], "GROUP_D" => [174, 40], "GROUP_E" => [4, 12] # ...
0
votes
1answer
173 views

Knapsack 0-1 path reconstruction (which items to take)

I know how to solve knapsack 0-1 problem with dynamic programming approach, but I am having troubles figuring out which items to take without compromising the complexity of O(N * C) (N items, C ...
0
votes
1answer
263 views

Bounded Knapsack Problem set-up. Want: a list of all possible packings

Rather than optimize anything, I want to list all the possible - including "incomplete" - packings of the knapsack. Of course, I could loop through all subsets of the set of objects and pick the ones ...
0
votes
2answers
533 views

VB.NET - Genetic Algotithm - Knapsack Problem

I have been working on the Knapsack problem using genetic algorithms. But I have run into a few difficulties... First off the user generates a data set which is stored in a text document. From there ...
0
votes
4answers
2k views

C/C++ implementation of a subset sum kind of problem

I think that stackoverflow is rendering me even lazier than usual, but... The problem is simpler than knapsack (or a type of it, without values and only positive weights). It consists on checking if ...