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 ...
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
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 ...
1
vote
2answers
53 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 ...
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
41 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 ...
-3
votes
1answer
57 views
Best Product Price Combination PHP Code [closed]
Please help!, I want a function that will generate the best price combination
that can fit/or nearest to the total price limit. these are the following variables
$limit = 475.60;
$product_prices = ...
10
votes
2answers
224 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 ...
1
vote
1answer
281 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 ...
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
1answer
93 views
Searching an algorithm similar to producer-consumer
I would like to ask if someone would have an idea on the best(fastest) algorithm for the following scenario:
X processes generate a list of very large files. Each process generates one file at a ...
1
vote
1answer
134 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 ...
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
vote
2answers
140 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
173 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 ...
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 ...
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 ...
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 ...
4
votes
4answers
164 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 ...
3
votes
2answers
238 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 ...
0
votes
2answers
211 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
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
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
0answers
101 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 ...
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 ...
0
votes
0answers
178 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 ...
1
vote
0answers
323 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. ...
0
votes
3answers
211 views
Fractional Knapsack + “yields a solution that is less than 1% of optimal for the 0/1 Knapsack.”
I am going over a review for an upcoming test and was wondering if someone could restate part b of the question. This is the text from the review sheet passed out, but I am not sure what part b is ...
1
vote
0answers
143 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 ...
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) ...
1
vote
1answer
343 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 ...
0
votes
0answers
99 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
1answer
163 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, ...
3
votes
1answer
200 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 ...
5
votes
2answers
586 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 = ...
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
...
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 ...
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 ...
1
vote
5answers
812 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
2answers
739 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 ...
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
1answer
258 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 ...
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 ...
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 ...
0
votes
1answer
141 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
239 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
0answers
97 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 ...
5
votes
3answers
349 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 ...
3
votes
3answers
298 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
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 ...
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 ...

