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 ...

learn more… | top users | synonyms

0
votes
0answers
8 views

Bug in simple dynamic programming algorithm (classic knapsack)

I looked at http://rosettacode.org/wiki/Knapsack_problem/0-1 to do the basic knapsack dynamic programming problem, and I got a working solution (knapsack1()), but when I tried a different solution ...
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 ...
-3
votes
0answers
37 views

Firefly Algorithm implementation for knapsack

I have problem in implementing Fire Fly Algorithm For Knapsack Problem I Study the Firefly algorithm concepts but don't know how to start implementing The Algorithm on Knapsack Problem Need a Guide or ...
1
vote
1answer
36 views

GLPK Mathprog group of sets

I'm trying to code a model that can solve the Multiple Choice Knapsack Problem (MCKP) as described in Knapsack Problems involving dimensions, demands and multiple choice constraints: generalization ...
1
vote
1answer
44 views

Unexpected Value Output When Not Using Visual Studio

I've been working on a program for my Algorithm Analysis class where I have to solve the Knapsack problem with Brute Force, greedy, dynamic, and branch and bound strategies. Everything works ...
-4
votes
1answer
58 views

Arrange Parties of Players Into Teams [closed]

For a multiplayer, team-based game, each Player can create a party and enter matchmaking with their group of party players. The server will then need to assign all the parties (for the sake of ...
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 ...
1
vote
0answers
136 views

Calculating items included in branch and bound knapsack

Using a branch and bound algorithm I have evaluated the optimal profit from a given set of items, but now I wish to find out which items are included in this optimal solution. I'm evaluating the ...
0
votes
1answer
75 views

Solving a Knapsack prob with 'min value' constraints on each item

Every item has three properties The size of the item Si The value of the item Vi The minimum value required to add the item into the knapsack Mi (<= 107) The will be atmost 100 items. We are ...
1
vote
0answers
111 views

1-0 Knapsack Permutations with Repeatable Items [closed]

I am trying to obtain a list of all permutations of repeatable items using a 1-0 knapsack dynamic programming algorithm. I have written a python program below which find the first set for each item, ...
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
112 views

Knapsack prob, but allow over-filling

Lets say I have 5 items (name, size, value) as follows: ("ITEM01", 100, 10000) ("ITEM02", 24, 576) ("ITEM03", 24, 576) ("ITEM04", 51, 2500) ("ITEM05", 155, 25) and I have to get the closest match ...
1
vote
2answers
171 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
1answer
100 views

Knapsack with minimum cost

I've got several types of coins, each have weight (wi) and cost (ci). So I've got to make a knapsack with weight==W and (!) minimum cost of coins in it. I can`t make recurrence relation to use DP.
0
votes
0answers
279 views

Greedy algorithm for 0-1 Knapsack

Is there any greedy algorithm that would give an optimal solution to non-fractional(0-1 Knapsack) Knapsack problem? I know that there is one for the fractional version of Knapsack giving the optimal ...
1
vote
1answer
110 views

Coin Change - Finding maximum Number

I'm having a hard time figuring out how to explain this problem. I'm currently trying to create a program for extra credit in my programming class, but I don't even understand the math behind it.... ...
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 ...
0
votes
0answers
45 views

knapsack and subsets generation

I am reading data (item, size, votes) from the text file into array of vector. Then a user enters a number n, and a program generates subsets (example here is n=3 then I have 8 subsets: 000, 001, ...
0
votes
0answers
144 views

subset sum - finding the maximum sum strict lower than m with subset size k

I'm struggling with the following problem: given an set of n items, find the maximum sum of the subset of size k that is strictly lower and as close as possible to a given number m. I have solved the ...
3
votes
1answer
257 views

Algorithm to fill large rectangle with smaller rectangles starting from center

I have various sizes of rectangles, and I am trying to fit them into a larger rectangle starting from the center. Below you will find an animation I created to visually describe what needs to take ...
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 ...
3
votes
2answers
235 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 ...
-2
votes
1answer
55 views

Are their solutions to the knapsack where there is conflict among the elements? [closed]

The problem I am trying to work with is related to, but not exactly, the 0-1 knapsack problem. I have a set of elements that all have a weight. I have a limited total weight that I am aiming for and I ...
1
vote
3answers
123 views

Knapsnack algorithm detecting objects

There is a simple dp solution of this problem: #include <vector> #include <limits> int knapsack2(const std::vector<int>& wts, const std::vector<int>& cost, int W) { ...
1
vote
1answer
275 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
124 views

how to understand about reducing time complexity on 0~1 knapsack

As for 0~1 knapsack problem, f[i][v]=max{f[i-1][v],f[i-1][v-c[i]]+w[i]} c[i] means the cost of ith goods, w[i] means the value of ith goods. And I read one doc,which said the time complexity can ...
1
vote
1answer
106 views

Create a Song List Algorithm

I would like to create a program that will create randomized set lists for my band; however, I don't want the sets to be completely random. Some songs are better to start a set with, some songs are ...
0
votes
2answers
185 views

Can not understand knapsack solutions

In wikipedia the algorithm for Knapsack is as follows: for i from 1 to n do for j from 0 to W do if j >= w[i] then T[i, j] := max(T[i-1, j], T[i-1, j-w[i]] + v[i]) [18] ...
0
votes
1answer
167 views

Trying to figure out the classic Knapsack recurrence

I am reading about the Knapsack Problem (unbounded) which is, as I understand a classic in DP. Although I think I understand the solution as I read it, I am not clear how I can translate it to actual ...
0
votes
1answer
157 views

recursive function in C (2 subarrays)

We have a code in a class that goes like this: int SubsetSum(int arr[], int idx, int n, int S) { if (S == 0) return 1; // This is stopping condition #1. if (S < 0 || n == 0) ...
3
votes
2answers
218 views

Detecting gaps in grid of divs

EDIT The solution has been found! Here's a blog post about it, and here is the Github repo! I am working on creating a grid of divs that is composed of multiple sized boxes, these sizes are set ...
0
votes
2answers
185 views

multi-dimensional knapsack with multiple constraints

i am unsure if i have even identified the problem correctly, but reading up on Knapsack problem seems the closest to what i am trying to solve: A cook has several ingredients of varying quantities. ...
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 ...
2
votes
1answer
102 views

0-1 Knapsack with additional restriction (colored items)?

I'm working on this problem mostly out of curiosity in my downtime at work. Imagine the normal 0-1 Knapsack problem, except all the items are either yellow, red, blue, or green, and due to your OCD ...
9
votes
1answer
294 views

Knapsack algorithm with an additional propertie

When there's 1 property, I do understand what's going on in there. I'm having a problem with understanding knapsack problem when there's more than 1 property. I have to write a program that uses ...
5
votes
2answers
214 views

Knapsack algorithm with 2 properties. How to implement that in a 3d array?

I'm having a problem with understanding knapsack problem when there's more than 1 property. When there's 1 property, I have to write a program that uses knapsack algorithm with a 2 properties. ...
1
vote
1answer
338 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 ...
3
votes
1answer
75 views

Combine Values to Create Bunch of 100 [closed]

suppose I have one array having the values: array(20,40,30,15,60,50,10) Now what i want is to I need to create bunch of 100 or near to hundred.and create separate round for each set of 100(or near ...
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
2answers
104 views

Finding the minimum number of values in a list to sum to value

So if I was given a sorted list/array i.e. [1,6,8,15,40], the size of the array, and the requested number.. How would you find the minimum number of values required from that list to sum to the ...
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 ...
-3
votes
1answer
230 views

InputMismatchException reading decimal fractions [closed]

In the main() function of http://penguin.ewu.edu/cscd501/Wint-2011/BranchAndBound/Knap01BnB.txt inp = new Scanner ( new File(lineIn) ); maxWeight = inp.nextInt(); n = inp.nextInt(); ...
0
votes
1answer
152 views

Knapsack DP with array of hashes

I'm trying to reduce the time and space needed by the Knapsack DP algorithm with non-integer values. http://en.wikipedia.org/wiki/Knapsack_problem#Meet-in-the-Middle_Algorithm In particular, if the ...
0
votes
1answer
138 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
3answers
370 views

Couldn't match expected type `(t1, t2, t0)' with actual type `[a0]`

I'm trying to solve a fractional knapsack problem with the input, [("label 1", value, weight), ("label 2", value, weight), ...] and the output, [("label 1", value, solution_weight), ("label 2", ...
0
votes
2answers
102 views

Haskell, list of list of different types, retriving values (frac knapsack prob)

I am trying to do the fractional knapsack problem in haskell so far I have Code: {- Input "how much can the knapsack hole <- x" "Possible items in sack [(label, value, weight), ...]" -} knap x [] ...
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 ...
3
votes
1answer
381 views

Why solving Knapsack probl. is not considered as linear programming?

Why isn't the knapsack problem included under the category of linear programming algorithms in spite of the fact that the Knapsack problem statement seems similar to the problems in linear ...
5
votes
2answers
2k views

C++ implementation of knapsack branch and bound

I am trying to a C++ implementation of this knapsack problem using branch and bounding. There is a Java version on this website here: Problem implementing branch and bound for knapsack I'm trying to ...
0
votes
1answer
73 views

Algorithm similar to the knapsack algorithm (but not really)

I have a set of numbers of size n (Assume n > 100). I also have a hard limit x. What I want is to take a variable number of elements from my set and find a combination of these elements so that when ...

1 2 3