English

Dynamic Subset Sum with Truly Sublinear Processing Time

Data Structures and Algorithms 2022-09-13 v1

Abstract

Subset sum is a very old and fundamental problem in theoretical computer science. In this problem, nn items with weights w1,w2,w3,,wnw_1, w_2, w_3, \ldots, w_n are given as input and the goal is to find out if there is a subset of them whose weights sum up to a given value tt. While the problem is NP-hard in general, when the values are non-negative integer, subset sum can be solved in pseudo-polynomial time  O~(n+t)~\widetilde O(n+t). In this work, we consider the dynamic variant of subset sum. In this setting, an upper bound \tmax\tmax is provided in advance to the algorithm and in each operation, either a new item is added to the problem or for a given integer value t\tmaxt \leq \tmax, the algorithm is required to output whether there is a subset of items whose sum of weights is equal to tt. Unfortunately, none of the existing subset sum algorithms is able to process these operations in truly sublinear time\footnote{Truly sublinear means n1Ω(1)n^{1-\Omega(1)}.} in terms of \tmax\tmax. Our main contribution is an algorithm whose amortized processing time\footnote{Since the runtimes are amortized, we do not use separate terms update time and query time for different operations and use processing time for all types of operations.} for each operation is truly sublinear in \tmax\tmax when the number of operations is at least \tmax2/3+Ω(1)\tmax^{2/3+\Omega(1)}. We also show that when both element addition and element removal are allowed, there is no algorithm that can process each operation in time \tmax1Ω(1)\tmax^{1-\Omega(1)} on average unless \textsf{SETH}\footnote{The \textit{strong exponential time hypothesis} states that no algorithm can solve the satisfiability problem in time 2n(1Ω(1))2^{n(1-\Omega(1))}.} fails.

Keywords

Cite

@article{arxiv.2209.04936,
  title  = {Dynamic Subset Sum with Truly Sublinear Processing Time},
  author = {Hamed Saleh and Saeed Seddighin},
  journal= {arXiv preprint arXiv:2209.04936},
  year   = {2022}
}