maybe somebody knows algorithm, or just what name it has, for putting stones (different weight) into different size backpacks? I should do it in Prolog. I give weights of stones and capacities of backpacks. Program should give me an answer how can I place all these stones into backpacks.

link|improve this question

75% accept rate
I think in general this is often called a "knapsack" (or "backpack" to some) problem. There are algorithms for it. I don't know a specific implementation in Prolog, but Googling for "knapsack problem" should get you moving in the right direction... – FrustratedWithFormsDesigner Dec 10 '10 at 16:52
1  
@FrustratedWithFormsDesigner: He has multiple knapsacks, so it's actually a bin-packing problem. – Jason Dec 10 '10 at 16:53
@Jason: Good point! – FrustratedWithFormsDesigner Dec 10 '10 at 16:54
feedback

4 Answers

up vote 3 down vote accepted

It's hard to tell since you haven't given much detail, but this sounds like a bin-packing problem. You can start on Wikipedia and Google to find algorithms that fit your needs (note that this an NP-Hard problem).

link|improve this answer
feedback

It's called the knapsack problem.

link|improve this answer
He has multiple knapsacks, so it's actually a bin-packing problem. – Jason Dec 10 '10 at 16:53
You're totally right. – sascha Dec 10 '10 at 16:54
feedback

it's a classic problem, check knapsack problem

link|improve this answer
He has multiple knapsacks, so it's actually a bin-packing problem. – Jason Dec 10 '10 at 16:52
feedback

I found a Polish test page written in PHP: http://pakowacz.net/html/simulator

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.