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
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 ...
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 = ...
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 ...
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) ...
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
236 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 ...