The knapsack problem or rucksack problem is a problem in combinatorial optimization: given a set of items, each with a weight and a value, 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 the total value is as large as ...

learn more… | top users | synonyms

10
votes
2answers
223 views

Any pseudo-polynomial algorithm for bounded 0-1 multi-knapsack?

Suppose that there are n items, e.g i1, i2, .... in, each of them with a known bounded weight w1, w2, ... wn. There are also a set of m knapsacks e.g. k1, k2 and km. Knapsacks are homogeneous, that ...
8
votes
1answer
216 views

0-1 Knapsack w/ partitioning constraints

I have a problem that on the surface looks like 0-1 knapsack. I have a set of possible "candidates" that can be choosen (or not), each candidate has a "weight" (cost) and a potential "value". Were ...
6
votes
1answer
301 views

Are these 2 knapsack algorithms the same? (Do they always output the same thing)

In my code, assuming C is the capacity, N is the amount of items, w[j] is the weight of item j, and v[j] is the value of item j, does it do the same thing as the 0-1 knapsack algorithm? I've been ...
5
votes
3answers
347 views

Logic Issue - how many / which small boxes in a big box - PHP/MySQL

I've got a problem, and I'll try and describe it in as simplest terms as possible. Using a combination of PHP and MySQL I need to fulfil the following logic problem, this is a simplified version of ...
5
votes
2answers
584 views

How to find which elements are in the bag, using Knapsack Algorithm [and not only the bag's value]?

There I have a code, which calculates the optimal value by knapsack algorithm (bin packing NP-hard problem): int Knapsack::knapsack(std::vector<Item>& items, int W) { size_t n = ...
4
votes
3answers
641 views

Haskell Knapsack

I've written an answer to the bounded knapsack problem with one of each item in Scala, and tried transposing it to Haskell with the following result: knapsack :: [ ( Int, Int ) ] -> [ ( Int, Int ) ...
4
votes
4answers
163 views

Which is the best method between Genetic Algorithm and Dynamic Programming to solve classic 0-1 knapsack? [closed]

Let's say I have problem like this: Knapsack capacity = 20 million Number of item = 500 Weight of each item is random number between 100 to 20 million Profit of each item is random number between 1 ...
4
votes
1answer
175 views

Minimizing colors: a variation of the knapsack algorithm?

Working on a project I've met this problem, which I will reword here in terms outside of the real domain of the problem (I suppose I could talk about calibers of fireworks and shapes, but it would ...
3
votes
2answers
236 views

Optimal way of filling 2 knapsacks?

The dynamic programming algorithm to optimally fill a knapsack works well in the case of one knapsack. But is there an efficient known algorithm that will optimally fill 2 knapsacks(capacities can be ...
3
votes
2answers
2k views

Solving the Integer Knapsack

I a new to dynamic programing and have tried the integer knapsack problem here at SPOJ (http://www.spoj.pl/problems/KNAPSACK/) . However, for the given test cases my solution is not giving the correct ...
3
votes
1answer
2k 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 ...
3
votes
1answer
119 views

What's the fastest way to solve knapsack prob with two properties

Let's say we've got an input: 10 // saying 1st property should be 10(in total) 10 // saying 2d property should be 10 (in total) 5 // saying theres 5 records below // (1st property) (2nd property) ...
3
votes
1answer
199 views

Knapsack - lowest priority, minimum weight

I have to implement the following variation of the knapsack problem. Each item for the knapsack has a priority and a weight. Now I specify a weight X. I must know compute the smallest set of items of ...
3
votes
3answers
297 views

0/1 Knapsack with few variables: which algorithm?

I have to implement the solution to a 0/1 Knapsack problem with constraints. My problem will have in most cases few variables (~ 10-20, at most 50). I recall from university that there are a number ...
3
votes
2answers
735 views

Knapsack Dynamic Programming

this is a typical Knapsack problem requiring dynamic programming and there is no constraint on the supply of items. I've been working on this for my class and I tried to play around with the algorithm ...
2
votes
4answers
182 views

fit movies on dvd, working but style/code questions

I made a prolog program to show me the best way of fitting stuff on dvd's. The questions are in the comments of the code for reference which I'll paste below, but it boils down to this: Is there a ...
2
votes
3answers
102 views

Fitting Lines into a Grid Matrix [Competition , Not HW]

In a recent competition organized by "AmDocs" , I came across the following question : (The basic Idea of the question) You are a given a matrix of fixed size 12x12. You are given six line segments ...
2
votes
2answers
1k views

Recursive backtracking

I am having a problem with my backtracking function it loops with certain data I can't write here the whole program code but can put here my function. bool shareMoney(int quantity, int *values, int ...
2
votes
1answer
81 views

Memoization:Rememo

The array memo[][] is returning the cloth that is that is in memo[X][Y]. I have tested this class and it seems like it only stores the first cloth that fits in memo[X][Y], but I want it to return the ...
2
votes
1answer
170 views

0-1 Knapsack revisited

Well, this is an old 0-1 Knapsack problem but after finding the total maximum price I can get I need to find the the items I can carry. But for the following test case ( total 3 items) 10 (max weight ...
2
votes
1answer
361 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 ...
1
vote
1answer
680 views

Packing problem revisited

I'm developing a game and I found a problem that I have to solve to handle the layout of a component which resembles me a packing problem. To summarize what I need to do suppose I've got a space ...
1
vote
2answers
139 views

Sum of a subset of numbers

Say I have one number 'n' and a table of numbers. I want to choose up to four of the numbers in the table, and the sum of those four will be the closest possible match to n. Given length 'L' of the ...
1
vote
2answers
172 views

Variation on knapsack - minimum total cost with exact weight [closed]

There are types of items (N types), each have weight wi and cost ci. There are an infinite number of each. The problem is to make a knapsack with EXACT (W) weight and minimum total cost of items. I ...
1
vote
1answer
339 views

Python Error TypeError: unorderable types: int() > list()

DISREGARD THIS I FOUND MY ISSUE THANKS TO ALL WHO TRIED! Hello I am writing and testing a recursive dynamic programmed knapsack (0-1) (the following code is the main file and the function) I keep ...
1
vote
1answer
41 views

What's the name of algorithm to decide best collect frequency in facebook games?

So in many facebook games there are various buildings with different collect frequency and the number of collection you can make depends on the length and gap of periods of free time you have in a ...
1
vote
2answers
1k views

Knapsack problem with specified number of weights can be used

I have a knapsack problem with specified knapsack capacity for weight and weights count. I need an algorithm that packs weights to knapsack when knapsack capacity is C, needed weights count is N and ...
1
vote
2answers
51 views

php - lowest cost based on case sizes

I'm working on a shipping module for wine, and was wondering if anyone could give me a hand - basically: The wine can be shipped in cases of 8, 12 or 15 bottles, each with its own price. The module ...
1
vote
1answer
133 views

Haskell - Avoiding a control stack overflow with tree recursion

For a university assignment, we have to investigate the various solutions to the knapsack problem, and then implement a solution in both Haskell and Python. I have chosen brute force. I realize there ...
1
vote
0answers
45 views

Variations of Knapsack - mutliple knapsacks with item and value

I have been looking through the variations of the knapsack problem but I could not find any variation that suits my problem. My variation is that I have multiple knapsacks, but in each one there is ...
1
vote
1answer
276 views

0-1 Multidimensional Knapsack

So I'm trying to generate an algorithm that will find the best combination of n items (in my case 4) that can only be placed in the knapsack once (0-1) with a maximum weight capacity. Summarized ...
1
vote
0answers
318 views

Dynamic programming: modified Knapsack

I am trying to solve a variation on the knapsack problem using dynamic programming: So what I have is a field of squares with dimensions: N*N (like a chessboard). On each square I have some values. ...
1
vote
0answers
142 views

What is wrong with my knapsack alghoritm? [closed]

My algorithm works and produces good results, but it takes too much time (6 s for 300 input items that is too much for branch and bound algorithm), so I have made a mistake somewhere, but really can't ...
1
vote
0answers
86 views

Are best feasible solution values of knapsack benchmarks of Beasley correct..?

I'm student studying genetic algorithm. I have question about knapsack problem benchmarks. I found knapsack problem instances of Beasley at website http://www.cs.nott.ac.uk/~jqd/mkp/index.html and ...
1
vote
0answers
233 views

Maximum Number of Rectangles to Fit in An Area [Competition , Not HW]

I have had this category of problems before, but never been able to solve it. The problem statement this time being : There are a given number of rectangles (different dimensions, given) , and a ...
1
vote
0answers
290 views

ant colony optimisation for 01 MKP

I'm trying to implement an ACO for 01MKP. My input values are from the OR-Library mknap1.txt. According to my algorithm, first I choose an item randomly. then i calculate the probabilities for all ...
1
vote
5answers
803 views

In Java, how do I create a bitmap to solve “knapsack quandary”

I'm in my first programming course and I'm quite stuck right now. Basically, what we are doing is we take 16 values from a text file (on the first line of code) and there is a single value on the ...
0
votes
1answer
84 views

Segmentation fault in C with only certain inputs

Okay, so I'm trying to solve the Knapsack problem. On small input cases the program runs with no problem and provides the optimal solution, however when the input size is large, or rather the ...
0
votes
6answers
6k 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
2answers
191 views

Knapsack algorithm for multiplication

I have a set of N numbers with some cost attached to each number, and the problem is to choose all possible set of numbers as a list such that their product is less than a certain number M, sorted ...
0
votes
2answers
210 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, ...
0
votes
1answer
21 views

0/1 Knapsack Clarification and Optimization

I was reading wikipedia regarding the 0-1 knapsack problem. I just want to clarify a couple things. I have two questions: http://en.wikipedia.org/wiki/Knapsack_problem#0.2F1_Knapsack_Problem I ...
0
votes
1answer
257 views

Balanced partition vs knapsack 1/0 complexity

Balanced partition: . You have a set of n integers each in the range 0 ... K. Partition these integers into two subsets such that you minimize |S1 - S2|, where S1 and S2 denote the sums of the ...
0
votes
3answers
271 views

knapsack algorithm variate

The question I'm having a problem is as follows: Suppose I have a piggy-bank of given weight and I'm saving money in it using a given set of coins. At the end, I know the total weight of the piggy ...
0
votes
1answer
375 views

DP algorithm for bounded Knapsack?

The Wikipedia article about Knapsack problem contains lists three kinds of it: 1) 1-0 (one item of a type) 2) bounded (several items of a type) 3) unbounded (unlimited number of items of a type) The ...
0
votes
0answers
22 views

Knapsack Variant with Multiplicative Item Synergies

I'm trying to improve a mostly manual process into mostly automated process, but I'm pretty sure it falls under the category of Knapsack Problems, and I'm having a little trouble coming up with an ...
0
votes
1answer
37 views

Greedy algorithm for a given unsorted input with time complexity “nlogn”

Multi-Constrained Knapsack Problem i have such a given example ,i m just trying to understand, whats the difference between greedy algorithm with O(n*logn) and greedy algorithm for O(n2)? I really ...
0
votes
1answer
56 views

How to read from scanf values of the 01-knapsack algorithm and pass to a function

If I enter the numbers: 3 10 7 6 5 5 4 5 the output is : 9. OK — that's the correct value. But if I enter: 10 25 3 5 3 5 3 5 3 5 3 5 3 5 3 5 3 5 3 5 3 5 the correct output should be: 15 but I ...
0
votes
1answer
34 views

Dynamic programming methodology

I was wondering if you might have some insight into a problem, where we consider an optimization problem: max ∑ from j=1 to n of fj(xj) such that ∑ j=1 to n of xj <=B xj>=0, integers where B is ...
0
votes
0answers
22 views

Linear programming complex reward function

The problem seems to be a knapsack variation and is as follows: all items have equal weights (let's take W=1 for simplicity), the nr of items is about 10000 in my case there is no knapsack weight ...

1 2