English

Preprocessed 3SUM for Unknown Universes with Subquadratic Space

Data Structures and Algorithms 2026-02-13 v1

Abstract

We consider the classic 3SUM problem: given sets of integers A,B,CA, B, C , determine whether there is a tuple (a,b,c)A×B×C(a, b, c) \in A \times B \times C satisfying a+b+c=0a + b + c = 0. The 3SUM Hypothesis, central in fine-grained complexity, states that there does not exist a truly subquadratic time 3SUM algorithm. Given this long-standing barrier, recent work over the past decade has explored 3SUM from a data structural perspective. Specifically, in the 3SUM in preprocessed universes regime, we are tasked with preprocessing sets A,BA, B of size nn, to create a space-efficient data structure that can quickly answer queries, each of which is a 3SUM problem of the form A,B,CA', B', C', where AAA' \subseteq A and BBB' \subseteq B. A series of results have achieved O~(n2)\tilde{O}(n^2) preprocessing time, O~(n2)\tilde{O}(n^2) space, and query time improving progressively from O~(n1.9)\tilde{O}(n^{1.9}) [CL15] to O~(n11/6)\tilde{O}(n^{11/6}) [CVX23] to O~(n1.5)\tilde{O}(n^{1.5}) [KPS25]. Given these series of works improving query time, a natural open question has emerged: can one achieve both truly subquadratic space and truly subquadratic query time for 3SUM in preprocessed universes? We resolve this question affirmatively, presenting a tradeoff curve between query and space complexity. Specifically, we present a simple randomized algorithm achieving O~(n1.5+ε)\tilde{O}(n^{1.5 + \varepsilon}) query time and O~(n22ε/3)\tilde{O}(n^{2 - 2\varepsilon/3}) space complexity. Furthermore, our algorithm has O~(n2)\tilde{O}(n^2) preprocessing time, matching past work. Notably, quadratic preprocessing is likely necessary for our tradeoff as either the preprocessing or the query time must be at least n2o(1)n^{2-o(1)} under the 3SUM Hypothesis.

Keywords

Cite

@article{arxiv.2602.11363,
  title  = {Preprocessed 3SUM for Unknown Universes with Subquadratic Space},
  author = {Yael Kirkpatrick and John Kuszmaul and Surya Mathialagan and Virginia Vassilevska Williams},
  journal= {arXiv preprint arXiv:2602.11363},
  year   = {2026}
}

Comments

13 pages

R2 v1 2026-07-01T10:32:41.620Z