You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! i'm read about knapsack problem in wikipedia, i need to solve this issue:
I have items that have more then 2 "dimensions" for example
type Item struct {
A int
B int
C int
D int
}
this items linear goes to knapsacks, count of knapsacks can changed (+-)
For starts i have 10 knapsacks, i need to put items to fill one by one knapsack.
Can you share me some ideas how to solve this? Items can't rotate, knapsack have equal count of "dimensions"
The text was updated successfully, but these errors were encountered:
Hi! i'm read about knapsack problem in wikipedia, i need to solve this issue:
I have items that have more then 2 "dimensions" for example
this items linear goes to knapsacks, count of knapsacks can changed (+-)
For starts i have 10 knapsacks, i need to put items to fill one by one knapsack.
Can you share me some ideas how to solve this? Items can't rotate, knapsack have equal count of "dimensions"
The text was updated successfully, but these errors were encountered: