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

1
vote
5answers
802 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 ...
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
734 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 ...
1
vote
2answers
50 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
votes
2answers
186 views

Knapsack variation?

i searched for this type of algorithm and red a lot of things but i couldn't find exactly what i'm looking for. So,i'm going shopping and i have x money, my truck can take up to y weight, and each ...
2
votes
1answer
77 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 ...
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
160 views

Knapsack - How to identify which weights are used?

I have a code which gives the maximum value I can get by filling the knapsack with the optimal set of weights. int arr[5] = {0, 0, 0, 0, 0}; int Weight[5] = {2, 5, 8, 7, 9}; int Value[5] = {4, 5, 7, ...
0
votes
1answer
136 views

Knapsack (multi-criteria)

If I have a knapsack where weight w have two values v1 and v2 and capacity is m. How will I find the total values for v1 and v2 where the weight does not exceed capacity m?
0
votes
1answer
235 views

Multiple Choice Knapsack Auction

I am desperatly looking for a MCKP solver in Java. I need it to solve an auction like this: 3 bidders, every bidder makes a set of offers for bundles of identical objects. Let's say there are 10 items ...
0
votes
1answer
282 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
80 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
1answer
78 views

Logic form getting Minimum UpperBound for a given Number from the set of numbers

My problem is as follows- I have some numbers with me, like below- 2 2 2 2 3 3 17 17 17 17 17 17 17 17 17 34 34 34 34 34 68 68 68 136 So if I give the following number ...
0
votes
1answer
221 views

Knapsack using GA

I have not asked about the knapsack problem using a genetic algorithm. the initialization I use this kind of chromosomes [1] = [weight] [profit], because his formula KP on chromosome evaluation weight ...
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
0answers
317 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
84 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
289 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 ...
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
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 ...
0
votes
0answers
13 views

Multiple MultiprocessorSchedulingProblems at once

Consider the well-known Number-Partitioning- or "Multiprocessor Scheduling Problem": You want to partition a set $S$ of objects (jobs) $i$ with (integral, positive) weights $w_i$ (process time) into ...
0
votes
0answers
176 views

0-1 Knapsack - other input values doesn't work on program

What I need to do is to implement the 0-1 Knapsack problem. There is an input file named "In0302.txt" and an output file named "Out0302.txt". The program gets values from INPUT file and saves the ...
0
votes
0answers
97 views

Knapsack subproblem - check if matrix can fill list of smaller matrix list

check if matrix can fill list of smaller matrix list Hi, i have a list of sizes ( for example : 3X1 , 4X2 and so on..) i want to check if i can put all of them in one matrix. i need to do it in a ...
0
votes
0answers
97 views

Copy answer array through recursive, dynamic 0-1 knapsack

I am currently writing a function to get an exact solution for the 0-1 knapsack function. This function accepts two arrays (for respective weights and prices), an array which indicates whether or not ...
0
votes
0answers
80 views

Brute force loops?

A farmer wants to buy 100 animals. He has 100 dollars. The prices are as follows: Pigs = 10 dollars. Hens = 3 dollars. Pigeons = 0.5 dollars. He must buy at least one of each animal. My task is to ...
0
votes
0answers
70 views

Knapsack multi-criteria

My INPUT: item = 1 2 3 4 weight= 5 2 4 3 value1= 1 3 5 2 value2= 6 3 2 4 where Knapsack capacityn m = 6 System.out.println("All values that have their total weight less than or equal to the ...
0
votes
0answers
96 views

Solve mckp using Java or Python

I am looking for a library in Java or Python that would help me to solve a multiple-choice knapsack problem (mckp). My knapsack needs to contain 3 items which need to be selected from 3 classes. Each ...
0
votes
0answers
573 views

Knapsacks problem 1/0 dynamic

I want to solve the knapsack problem with dynamic programming! The item should be in the knapsack or not, I do not want to put the same item in the knapsack more then one time! I've looked at this ...