Online General Knapsack with Reservation Costs
By: Elisabet Burjons, Matthias Gehnen
Potential Business Impact:
Lets you save more valuable things by paying a small fee.
In the online general knapsack problem, an algorithm is presented with an item $x=(s,v)$ of size $s$ and value $v$ and must irrevocably choose to pack such an item into the knapsack or reject it before the next item appears. The goal is to maximize the total value of the packed items without overflowing the knapsack's capacity. As this classical setting is way too harsh for many real-life applications, we will analyze the online general knapsack problem under the reservation model. Here, instead of accepting or rejecting an item immediately, an algorithm can delay the decision of whether to pack the item by paying a fraction $0\le \alpha$ of the size or the value of the item. This models many practical applications, where, for example, decisions can be delayed for some costs e.g. cancellation fees. We present results for both variants: First, for costs depending on the size of the items and then for costs depending on the value of the items. If the reservation costs depend on the size of the items, we find a matching upper and lower bound of $2$ for every $\alpha$. On the other hand, if the reservation costs depend on the value of the items, we find that no algorithm is competitive for reservation costs larger than $1/2$ of the item value, and we find upper and lower bounds for the rest of the reservation range $0\le\alpha< 1/2$.
Similar Papers
Online Knapsack Problems with Estimates
Data Structures and Algorithms
Helps computers pick the best deals with uncertain prices.
Generalized Assignment and Knapsack Problems in the Random-Order Model
Data Structures and Algorithms
Puts items in boxes better when order is random.
Stealing From the Dragon's Hoard: Online Unbounded Knapsack With Removal
Data Structures and Algorithms
Helps pack more stuff in a bag.