English

Faster Knapsack Algorithms via Bounded Monotone Min-Plus-Convolution

Data Structures and Algorithms 2022-05-18 v1

Abstract

We present new exact and approximation algorithms for 0-1-Knapsack and Unbounded Knapsack: * Exact Algorithm for 0-1-Knapsack: 0-1-Knapsack has known algorithms running in time O~(n+min{nOPT,nW,OPT2,W2})\widetilde{O}(n + \min\{n OPT, n W, OPT^2, W^2\}), where nn is the number of items, WW is the weight budget, and OPTOPT is the optimal profit. We present an algorithm running in time O~(n+(W+OPT)1.5)\widetilde{O}(n + (W + OPT)^{1.5}). This improves the running time in case n,W,OPTn,W,OPT are roughly equal. * Exact Algorithm for Unbounded Knapsack: Unbounded Knapsack has known algorithms running in time O~(n+min{npmax,nwmax,pmax2,wmax2})\widetilde{O}(n + \min\{n \cdot p_{\max}, n \cdot w_{\max}, p_{\max}^2, w_{\max}^2\}) [Axiotis, Tzamos '19, Jansen, Rohwedder '19, Chan, He '20], where nn is the number of items, wmaxw_{\max} is the largest weight of any item, and pmaxp_{\max} is the largest profit of any item. We present an algorithm running in time O~(n+(pmax+wmax)1.5)\widetilde{O}(n + (p_{\max} + w_{\max})^{1.5}), giving a similar improvement as for 0-1-Knapsack. * Approximating Unbounded Knapsack with Resource Augmentation: Unbounded Knapsack has a known FPTAS with running time O~(min{n/ε,n+1/ε2})\widetilde{O}(\min\{n/\varepsilon, n + 1/\varepsilon^2\}) [Jansen, Kraft '18]. We study weak approximation algorithms, which approximate the optimal profit but are allowed to overshoot the weight constraint. We present the first approximation scheme for Unbounded Knapsack in this setting, achieving running time O~(n+1/ε1.5)\widetilde{O}(n + 1/\varepsilon^{1.5}). Our algorithms can be seen as reductions to Min-Plus-Convolution on monotone sequences with bounded entries. These structured instances of Min-Plus-Convolution can be solved in time O(n1.5)O(n^{1.5}) [Chi,Duan,Xie,Zhang '22] (in contrast to the conjectured n2o(1)n^{2-o(1)} lower bound for the general case).

Keywords

Cite

@article{arxiv.2205.08493,
  title  = {Faster Knapsack Algorithms via Bounded Monotone Min-Plus-Convolution},
  author = {Karl Bringmann and Alejandro Cassis},
  journal= {arXiv preprint arXiv:2205.08493},
  year   = {2022}
}

Comments

Shortened abstract. Appears at ICALP '22

R2 v1 2026-06-24T11:20:13.515Z