English

Range Longest Increasing Subsequence and its Relatives

Data Structures and Algorithms 2025-12-02 v2

Abstract

In this work, we present a plethora of results for the range longest increasing subsequence problem (Range-LIS) and its variants. The input to RLIS is a sequence SS of nn real numbers and a collection QQ of mm query ranges, and for each query in QQ, the goal is to report the LIS of the sequence SS restricted to that query. Our two main results are for the following generalizations of the RLIS problem. 2D range queries: In this variant of the RLIS problem, each query is a pair of ranges, one of indices and the other of values, and we provide a randomized algorithm with running time O~(mn1/2+n3/2)+O(k)\tilde{O}(m n^{1/2} + n^{3/2}) + O(k), where kk is the cumulative length of the mm output subsequences. This improves on the elementary O(mn)O(mn)-time algorithm when mm is at least n1/2n^{1/2}. Previously, the only known result breaking the quadratic barrier was due to Tiskin [SODA'10], which could only handle 1D range queries (i.e., each query was a range of indices) and also just outputted the length of the LIS (instead of reporting the subsequence achieving that length). Colored sequences: In this variant of the RLIS problem, each element in SS is colored, and for each query in QQ, the goal is to report a monochromatic LIS contained in the sequence SS restricted to that query. For 2D queries, we provide a randomized algorithm for this colored version with running time O~(mn2/3+n5/3)+O(k)\tilde{O}(m n^{2/3} + n^{5/3}) + O(k). Moreover, for 1D queries, we provide an improved algorithm with running time O~(mn1/2+n3/2)+O(k)\tilde{O}(m n^{1/2} + n^{3/2}) + O(k). Thus, we again improve on the elementary O(mn)O(mn)-time algorithm. Additionally, assuming the well-known Combinatorial Boolean Matrix Multiplication Hypothesis, we prove that the running time for 1D queries is essentially tight for combinatorial algorithms.

Keywords

Cite

@article{arxiv.2404.04795,
  title  = {Range Longest Increasing Subsequence and its Relatives},
  author = {Karthik C. S. and Saladi Rahul},
  journal= {arXiv preprint arXiv:2404.04795},
  year   = {2025}
}

Comments

Abstract shortened to meet Arxiv requirements

R2 v1 2026-06-28T15:46:15.629Z