Nearly Tight Lower Bounds for Succinct Range Minimum Query
Mingmou Liu

TL;DR
This paper establishes nearly tight lower bounds on the space complexity of data structures for the Range Minimum Query problem, matching the upper bounds up to polylogarithmic factors, thus nearly closing the gap in understanding optimal space-time trade-offs.
Contribution
It proves a nearly tight lower bound on space for RMQ data structures with given query time, improving previous bounds and matching upper bounds up to polylogarithmic factors.
Findings
Lower bound matches upper bounds up to polylogarithmic factors.
Space complexity must be at least $2n - 1.5\
n + n/(\
Abstract
Given an array of distinct integers , the Range Minimum Query (RMQ) problem requires us to construct a data structure from , supporting the RMQ query: given an interval , return the index of the minimum element in subarray , i.e. return . The fundamental problem has a long history. The textbook solution which uses words of space and time by Gabow, Bentley, Tarjan (STOC 1984) and Harel, Tarjan (SICOMP 1984) dates back to 1980s. The state-of-the-art solution is presented by Fischer, Heun (SICOMP 2011) and Navarro, Sadakane (TALG 2014). The solution uses bits of space and query time, where the additive is a pre-computed lookup table used in the RAM model, assuming the word-size is …
Peer Reviews
No public reviews on file for this paper yet. If you reviewed it on a platform where reviews are public (OpenReview, ICLR, NeurIPS, ICML), you can paste yours below so the community can read it here.
Videos
No videos yet. Explain this paper in a talk, walkthrough, or lecture? Add one.
Taxonomy
TopicsAlgorithms and Data Compression · DNA and Biological Computing · Complexity and Algorithms in Graphs
