Tagged Questions

The knapsack problem is a problem in combinatorial optimization: Given a set of items with associated weights and values, determine the number of each item to include in a collection so that the total weight is less than or equal to a given limit and it maximizes the total value. It is a _NP-complete_ problem, but several common simplifications are solved efficiently with _dynamic programming_.

learn more… | top users | synonyms

13
votes
1answer
232 views

How is this memoized DP table too slow for SPOJ?

SPOILERS: I'm working on http://www.spoj.pl/problems/KNAPSACK/ so don't peek if you don't want a possible solution spoiled for you. The boilerplate: import Data.Sequence (index, fromList) import ...
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] ...
11
votes
3answers
328 views

Designing a different kind of tag cloud

Rather than having a bunch of links that are all different sizes, I want all of my tags to be the same size. However, my goal is to minimize the amount of space required to make the cloud, aka ...
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 ...
10
votes
5answers
2k views

Efficient table for Dynamic Programming in Haskell

I've coded up the 0-1 Knapsack problem in Haskell. I'm fairly proud about the laziness and level of generality achieved so far. I start by providing functions for creating and dealing with a lazy 2d ...
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
698 views

Why is the knapsack problem pseudo-polynomial?

I know that Knapsack is NP-complete while it can be solved by DP. They say that the DP solution is pseudo-polynomial, since it is exponential in the "length of input" (i.e. the numbers of bits ...
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 ...
5
votes
6answers
466 views

canonical problems list

Does anyone known of a a good reference for canonical CS problems? I'm thinking of things like "the sorting problem", "the bin packing problem", "the travailing salesman problem" and what not. edit: ...
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' ...
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 ...
4
votes
5answers
376 views

Dividing a list of values into three equal subtotals

I have a list of numbers which total 540000. I would like to sort this list into 3 lists which each total 180000. What is the most efficient programming method to do this, assuming that the list of ...
3
votes
1answer
162 views

This C code for a dynamic programming solution to the 0/1 Knapsack Problem‍​​ doesn't give the correct output with GCC. Why?

#include<stdio.h> int max(int a,int b) { if(a>b) return a; else return b; } void knapsack(int m,int n,int w[],int p[]) { int v[10][10],x[10],i,j; ...
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 ...
3
votes
1answer
1k views

Calculate a rough estimate for shipping box size

I'm trying to find the best way to calculate the box size needed for shipping. I have 3 shipping containers with different sizes. I have the product's width, length, depth, and mass defined in the ...
3
votes
3answers
1k views

Possible Combination of Knapsack problem and?

Alright quick overview I have looked into the knapsack problem http://en.wikipedia.org/wiki/Knapsack_problem and i know it is what i need for my project, but the complicated part of my project ...
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
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
1answer
158 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
1answer
399 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 ...
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
48 views

Solving 3D knapsack using bruteforce in Java

I want to solve a 3-dimesional knapsack problem. I got a number of boxes with a different width, height, length and value. I got a specified space and I want to put the boxes into that space, such ...
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
2answers
177 views

Memory Choke on Branch And Bound Knapsack Implementation

I wrote this implementation of the branch and bound knapsack algorithm based on the pseudo-Java code from here. Unfortunately, it's memory choking on large instances of the problem, like this. Why is ...
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
504 views

Problem implementing the graph_coloring - m coloring problem

I have to write C++ program, which will determine how many colors I should use to color undirected graph. Also, I have to do this using algorithm from book "Foundations of Algorithms using C++ ...
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: ...
1
vote
2answers
939 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
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
591 views

JaCoP: Solving an 0/1 knapsack problem

I've been trying to teach myself how to use the JaCoP constraint programming library but I'm having a bit of difficulty implementing an 0/1 knapsack problem. I've tried a problem size of 4 and defined ...
1
vote
1answer
136 views

Knapsack with items to consider constraint

I have items I1, I2, I3, I4 with weights W1...W4 and Values V1...V4. I want to maximize values with minimum weights. This is a traditional Knapsack. However there is small constraint some items cannot ...
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
3answers
343 views

Improved Genetic algorithm for multiknapsack problem

Recently i've been improving traditional genetic algorithm for multiknapsack problem. So My Improved Genetic Algorithm is working better then Traditional Genetic Algorithm. I tested. (i used ...
1
vote
2answers
1k views

How to ensure Java threads run on different cores

I am writing a multi-threaded application in Java in order to improve performance over the sequential version. It is a parallel version of the dynamic programming solution to the 0/1 knapsack problem. ...
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
57 views

Code sometimes returns Integer.MAX_VALUE.Cannot figure out why

I am trying to write code to return the lowest number of coins needed to make up a given number. The inputs to my method are an array of valid coins, and the number I try to make. public static ...
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 ...

1 2