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 of each link. Selection criteria: it is better to use longer items.
Example. Let's say we want to create a belt width, W = 1024.0 One of the models has the following link lengths: L = [34.0, 65.0, 96.0, 126.0]
The question is, how many of each link to make the width.
Here is a few approaches I have tried.
1. Greedy (select longest 1st to satisfy criteria) c = [0,0,0,8] where c is the count of each item. This leaves a gap of 16.0 and I can't fit even 1 of the smallest items. Greedy is easy but not good.
2. Selection loop Not too easy, I think that this is a difficult problem. I have tried many strategies: filling with small items then removing them sequentially to fit the next size up.
3. Knapsack method Not really appropriate because this is based on a given number of items.
4. Subset sum problem This is a sub-class of Knapsack but I have not been able to get it working.
5. Bin Packing problem It sounds similar but I couldn't get it to apply to my problem.
6. Brute force (random selection) Strangely, this one finds many exact matches. I use a simple polynomial of the count as a rating. rating = n[0] + n[1]*2 + n[2]*3 + n[4]**4 + ... One of the solutions from brute force is [4, 0, 4, 4] giving exactly 1024. The problem is, this method often comes up with a different selection so it is not ideal.
7. Exhaustive search Not practical because there are too many choices.
8. Simulated Annealing From the success of brute force, this looks like a good alternative. Can someone point me to a simple example (please not another traveling salesman).
9. Genetic and particle swarm Not sure about these.
Now, I am stuck and frustrated. Is there a direct algorithm that can be used for this problem?