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 ...
-1
votes
2answers
188 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 ...
0
votes
1answer
39 views
Meaning of Knapsack datas [closed]
I'm trying to implement a multidimensional knapsack problem by using tabu search. The data I'm gonna use is like this:
2 28 // 2 knapsacks, 28 object
1898 440 22507 270 14148 3100 4650 30800 615 ...
0
votes
1answer
377 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 ...
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 ) ...
1
vote
5answers
808 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 ...
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
302 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 ...
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
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
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, ...
5
votes
2answers
585 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 = ...
2
votes
1answer
366 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
0answers
574 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 ...
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 ...
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
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 ...
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 ...
1
vote
1answer
681 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 ...