Dynamic and Streaming Algorithms for Union Volume Estimation
Abstract
The union volume estimation problem asks to -approximate the volume of the union of given objects . In their seminal work in 1989, Karp, Luby, and Madras solved this problem in time in an oracle model where each object can be accessed via three types of queries: obtain the volume of , sample a random point from , and test whether contains a given point . This running time was recently shown to be optimal [Bringmann, Larsen, Nusser, Rotenberg, and Wang, SoCG’25]. In another line of work, Meel, Vinodchandran, and Chakraborty [PODS’21] designed algorithms that read the objects in one pass using polylogarithmic time per object and polylogarithmic space; this can be phrased as a dynamic algorithm supporting insertions of objects for union volume estimation in the oracle model.
In this paper, we study algorithms for union volume estimation in the oracle model that support both insertions and deletions of objects. We obtain the following results:
-
1.
an algorithm supporting insertions and deletions in polylogarithmic update and query time and linear space (this is the first such dynamic algorithm, even for 2D triangles);
-
2.
an algorithm supporting insertions and suffix queries (which generalizes the sliding window setting) in polylogarithmic update and query time and space;
-
3.
an algorithm supporting insertions and deletions of convex bodies of constant dimension in polylogarithmic update and query time and space.
Keywords and phrases:
union volume estimation, dynamic algorithms, streaming algorithmsCopyright and License:
2012 ACM Subject Classification:
Theory of computation Computational geometry ; Theory of computation Streaming, sublinear and near linear time algorithms ; Theory of computation Data structures design and analysisFunding:
Karl Bringmann and Yanheng Wang: This work is part of the project TIPEA that has received funding from the European Research Council (ERC) under the European Unions Horizon 2020 research and innovation programme (grant agreement No. 850979).Editors:
Hee-Kap Ahn, Michael Hoffmann, and Amir NayyeriSeries and Publisher:
Leibniz International Proceedings in Informatics, Schloss Dagstuhl – Leibniz-Zentrum für Informatik
1 Introduction
In the union volume estimation problem, we are given objects , which are assumed to be measurable sets in , and the task is to -approximate the volume of .111A discrete variant of the problem, estimating the cardinality of the union of sets , can be easily reduced to the continuous version, by replacing each grid point with a unit grid cell. This is a fundamental problem in computer science, with connections to several areas such as network reliability [32, 34], DNF counting [34], general model counting [45, 14], probabilistic databases [35, 21, 46], and probabilistic query evaluation on databases [13, 12]. Perhaps the most popular special case in computational geometry is Klee’s measure problem [36], where each object is a -dimensional axis-aligned box. There has been extensive work on Klee’s measure problem (either exact or approximate) in constant dimensions [44, 15, 16, 37, 27, 10].
To capture a wide variety of input objects with a unified framework, Karp and Luby [33] introduced an oracle model. An algorithm in this model can access each object exclusively via three types of queries: (i) gives the volume of , (ii) samples a point uniformly at random from the set , and (iii) tests whether a given point is contained in . The time complexity of the algorithm is measured by the number of queries plus the number of additional steps; that is, each query is assumed to take unit time. In a seminal result, Karp, Luby, and Madras [34] gave an algorithm in the oracle model that solves union volume estimation in time with constant success probability, where is the approximation precision. Black-box usage of this result also yields the best known algorithms for several applications, including DNF counting. (For Klee’s measure problem, it implies an -time approximation algorithm [9]; in small dimensions, this was improved to time at last year’s SoCG [10].) Only recently has a matching lower bound been established: queries are necessary to solve union volume estimation in the oracle model [10].
With the static setting now fully understood, attention naturally shifts to the dynamic setting, where the input evolves over time through insertions and deletions of objects. The study of dynamic union volume estimation has a twofold motivation. On one hand, it captures modern data-driven applications where datasets are inherently mutable, and volume estimates must be maintained continuously rather than recomputed from scratch after each update. On the other hand, the dynamic setting presents a compelling theoretical challenge, as it is far from obvious whether the tools developed for the static setting can be dynamized efficiently. Indeed, dynamic geometric problems have repeatedly proven to be substantially more difficult than their static counterparts. An extensive body of work in recent years deals with dynamic geometric problems such as set cover [2, 17], independent set [28, 7, 6], planar point location [43], connectivity [19, 18], and nearest neighbor search [1], yet in this broader context dynamic union volume estimation remains largely unexplored. The following question has not been resolved even for very simple classes of objects such as triangles in :
Q1: Can we solve dynamic union volume estimation in the oracle model under insertions and deletions of objects in update and query time?
An even more demanding paradigm is the (one-pass) streaming setting, where the algorithm has to not only handle updates, but use space that is typically required to be polylogarithmic in the input size. Earlier work has explored streaming algorithms under strong restrictions on the input objects. For example, Tirthapura and Woodruff [47] designed a dynamic streaming algorithm for Klee’s measure problem on axis-aligned boxes. However, the problem remains unaddressed for more general classes of objects:
Q2: Can we solve dynamic union volume estimation in the oracle model under insertions and deletions of objects in space as well as update and query time?
In the restricted insertion-only setting, Meel, Vinodchandran, and Chakraborty [40] gave a positive answer to this question, using time per update and query, and space in the oracle model.222In this paper, we assume that points from the input objects and -bit integers fit into a machine word, and space complexity counts the number of machine words. An arithmetic operation on machine words is assumed to take unit time. Both are natural assumptions for a continuous universe. Some previous work such as [40] focuses on sets from a finite universe and studies bit complexity; when stating previous work in the introduction, we have translated their results into our setting. In the finite universe , different trade-offs between and were obtained in [39, 42]. However, their algorithm cannot handle deletions.
2 Our contributions
2.1 Dynamic algorithm with insertions and deletions
We answer our driving question (Q1) positively, not only for 2D triangles, 3D simplices, and other common types of objects encountered in computational geometry, but in the full generality of the oracle model. Our new dynamic algorithm can handle arbitrary sequences of both insertions and deletions.
More precisely, we consider an initially empty multiset of objects under the updates insert(), which adds object to , and delete(), which removes object from . Upon query estimate(), the algorithm outputs a -approximation to the volume .
During insertion/deletion the algorithm is given oracle access to the inserted/deleted object. We also need the ability to store objects (or their oracles), in case of future lookup of the previously inserted objects. We make the natural assumption that (i) the argument of insert() and delete() is a pointer to the oracle of , (ii) we can store a pointer in a machine word, and (iii) knowing the pointer allows us to access the oracle to which the pointer is pointing. In this interpretation, is treated as a multiset of pointers: the same pointer can be inserted multiple times, and upon deletion, the multiplicity of the pointer is decreased by one. Naturally, the multiplicity of any pointer must be non-negative throughout the process (in particular, objects being deleted must have previously been inserted).
Theorem 1.
There is a dynamic algorithm in the oracle model that maintains a multiset of objects under updates insert() and delete(). Upon query estimate(), it outputs a -approximation to with high probability. The amortized expected update time is , the query time is , and the space complexity is .
Note that since the algorithm operates in the general oracle model, it works well even for high-dimensional objects (e.g., for simplices in , with polynomial dependence on ).
2.2 Streaming algorithm with insertions and suffix queries
In our remaining results, we turn to streaming algorithms and our driving question (Q2) and show that polylogarithmic time and space can be achieved in certain settings. We first consider the sliding window setting [22], which supports insertions of objects and querying over the last objects for a fixed window size ; thus, objects are deleted in the same order as they are inserted. Numerous results and techniques have been developed in the sliding window setting (see [41, 3, 8] for an overview and [48, 30, 25] for recent work), but no such result was known for union volume estimation.
We obtain the first efficient sliding-window algorithm for union volume estimation. Again, it works in the general oracle model! Moreover, the result holds in an extension of the sliding-window setting, where at each time an object is inserted (but cannot be deleted), and a query estimate() may return a -approximation to the volume of the suffix with high probability for any number the user specifies.
Theorem 2.
There is an algorithm that implicitly maintains a sequence of objects of aspect ratio . The algorithm supports update insert(), which appends an object (as ) to the sequence, and query estimate(), which outputs a -approximation to with high probability. The update time is , the query time is , and the space complexity is .
Our algorithm not only generalizes previous insertion-only results [40], but is also remarkably simple. Note that the space bound depends on the aspect ratio , defined as the ratio of the largest volume of any object ever inserted and the smallest volume of any object ever inserted. In many applications, is a polynomial in and thus . Furthermore, geometric algorithms in the sliding window setting [24, 20] usually have logarithmic dependencies on parameters such as the aspect ratio or spread.
2.3 Streaming algorithm for convex bodies with insertions and deletions
Lastly, we consider streaming algorithms that support both insertions and deletions. We manage to develop an efficient algorithm for a reasonably wide class of geometric objects – namely, convex bodies in any constant dimension:
Theorem 3.
Given , there is an algorithm that implicitly maintains a multiset of convex bodies in , where each convex body contains a ball of radius , under updates insert() and delete(). Upon query estimate(), it outputs a -approximation to with high probability. The expected update and query time and space are for constant .
The bounds depend polylogarithmically on , which is common in volume estimation algorithms for a single convex object [23] as well as geometric streaming algorithms [29, 26].
Previously, Tirthapura and Woodruff obtained an efficient dynamic streaming algorithm only for axis-aligned boxes [47] (with update time and space in a discrete universe ). To emphasize the generality of our algorithm, note that many non-convex objects can be decomposed into a small number of convex objects, e.g., non-convex polyhedra of constant combinatorial complexity in constant dimensions can be decomposed into a constant number of simplices, to which our algorithm can be applied.
3 Technical overview
3.1 Dynamic algorithm with insertions and deletions
Karp, Luby and Madras’ algorithm [34] and subsequent work are based on the observation that we can estimate the volume of a union by maintaining a finite random subset that selects every point independently with probability density . It turns out that the “right” choice of is one such that ; in this case provides a good estimate of the volume of .
Meel, Vinodchandran, and Chakraborty [40] described a particularly simple way to maintain such a random set for insertion-only updates: when a new object is inserted, we remove from all points that are contained in , then add to freshly sampled points in with density . This step is inexpensive for the right choice of since is logarithmic. If becomes too big, we increment (thereby halving the sampling rate and also in expectation) and move on.
Difficulty arises in the presence of deletions: the volume is no longer monotonically increasing, and the right choice of may increase or decrease over time. Our first observation is that the deletion-only case can be handled by a variant of Meel, Vinodchandran, and Chakraborty’s insertion-only algorithm. Roughly, we can maintain for the right by keeping a counter on the number of objects containing each sample point (recall that is logarithmic for the right ). When an object is deleted, we decrement the counters of all points in , and when a counter drops to 0, the point is removed from . When the number of surviving sample points drops below logarithmic, we decrease , rebuild by iterating over all objects that has not been deleted (recall that we can store pointers to all objects), and reinitialize the counters.
A popular technique in dynamic computational geometry by Bentley and Saxe [4], called the logarithmic method, transforms deletion-only data structures into fully dynamic ones. It works by decomposing a fully dynamic set into logarithmically many deletion-only subsets, increasing the update and query time by typically just a logarithmic factor. The logarithmic method applies to so-called decomposable problems that satisfy the following property: if the input is decomposed into subsets, then the answer to the original problem can be quickly obtained from the answers to the individual subsets. Unfortunately, union volume estimation is not a decomposable problem: We cannot determine the volume of the union of just from the volume of the union of each .
Nevertheless, we show that a novel variant of the logarithmic method can still work. Recall that the deletion-only data structure already maintains a sample for each . For each sample point we keep track of more counters – specifically, how many sets from the other ’s contain the point. These counters provide enough information to avoid double counting and help us estimate the union volume accurately. One issue though is that many counters need to be adjusted when one of the deletion-only data structures changes and recomputes . Fortunately, we manage to bound the total number of such changes, so the amortized cost for maintaining all counters remains polylogarithmic. See Section 5 for details.
3.2 Streaming algorithm with insertions and suffix queries
The dynamic algorithm with arbitrary insertions and deletions needs linear space because the data structure rebuilds on the remaining objects when the “right” decreases. However, in the sliding window setting and more generally the setting of suffix queries, the remaining objects are contiguous in time and need not be stored explicitly. We obtain a streaming algorithm in this case by a simple yet non-trivial generalization of Meel, Vinodchandran, and Chakraborty’s algorithm. Specifically, we keep the timestamp when each point in is sampled. For each we keep track of the largest timestamp such that discarding points older than from makes logarithmically bounded. This timestamp is monotonically increasing over time for each fixed . To estimate the volume of the union of for a given at time , we identify the smallest for which , and output . See Section 6 in the full version [5] for details.
3.3 Streaming algorithm for convex bodies with insertions and deletions
Our streaming algorithm for low-dimensional convex objects for arbitrary insertions and deletions is based on another simple sampling strategy. First, it is not difficult to discretize the space to a grid for some large , so that the volume of the union is close to the number of grid points in . The idea now is to select a random subset of the grid in the beginning, and maintain the intersection during the updates. Using a pairwise independent family of hash functions, can be represented implicitly with logarithmically many bits.
When we insert or delete an object , we just need to insert or delete to or from (viewed as a multiset of points). An issue is that the space usage may be large for a with a “wrong” sampling rate, and we do not know which is the right choice beforehand. Furthermore, a wrong choice may become right at a later time. This issue can be resolved by representing by data structures for sparse vectors [26, 31], which support adding numbers to a given coordinate, as well as recovering the vector when its norm is below a threshold. In this way, we essentially just pay for the space at the right sampling rate.
A question remains: how to enumerate the points of for a given object and for our implicitly represented set ? For the case where the objects are rotated (non-axis-aligned) boxes in constant dimension, and for a particular pairwise independent family of hash functions, we observe that this subproblem directly reduces to integer linear programming (ILP) with a constant number of constraints and variables, and therefore can be solved efficiently by well-known algorithms [38]. For more general convex objects in constant dimension, we bound each object by a small rotated box , use an ILP to enumerate the points of and discard those not in . By “small” we mean that the volume of is comparable to that of , so in particular the number of discarded points is small. See Section 7 in the full version [5] for details.
Our approach is related to Tirthapura and Woodruff’s algorithm [47] for axis-aligned boxes. Their idea was to directly adapt a streaming algorithm for approximately counting distinct elements to estimate : to insert or delete an object , we cannot afford to literally insert or delete all points in , but they showed how to efficiently simulate the effect for a specific distinct elements algorithm in the case of axis-aligned boxes. Our approach is more modular in that we apply sparse recovery only as a black box. Our main contribution however is the realization, via solving an ILP, that this type of approach works far more generally than for axis-aligned boxes, namely, for general convex objects.
4 Preliminaries
We assume that all relevant parameters (the precision , an upper bound on the number of operations, etc.) are given at initialization. Knowing is in line with the usual assumptions in streaming algorithms; it can easily be avoided but this complicates notation. The phrase “with high probability” means that the probability is at least . We denote . The notation means that . Similarly, means that , and we say that is a -approximation to .
As in all previous work, our algorithms exploit the close relation between volume estimation and sampling. The notion of -samples is central:
Definition 4 (-sample).
Let be a measurable set and . A random finite subset is an -sample of , denoted , if for every measurable subset .
It follows from this definition that: (i) if , then for any measurable subset ; (ii) if and are independent and are disjoint, then .
Definition 5 (level).
For a measurable set , we define as the unique integer such that .
We will see later that if where , then concentrates around its expectation .
Let denote the union we are interested in. Each of our algorithms morally maintains an -sample of for every throughout the updates; upon query, it identifies some and outputs . However, there are two pitfalls. First, the identification of actually requires inspecting the outcomes of the random sets , so is a random variable and this complicates the concentration analysis. Second, we cannot afford to maintain all sets at once. Our algorithms only explicitly store those with ; for such we have . For the set is too large and must be compressed or discarded. Naturally, this further complicates the algorithms.
5 Dynamic algorithm with insertions and deletions
In this section, we prove Theorem 1 by presenting a fully dynamic (non-streaming) algorithm for union volume estimation in linear space and polylogarithmic update time. Throughout we assume that the volume of each object is in the range . The general case can be easily reduced to this case; see Lemma 4.1 in the full version [5].
5.1 Preparations
We will use the Karp–Luby–Madras algorithm as a subroutine:
Theorem 6 (Karp, Luby, Madras [34]).
Let be a parameter. There is an algorithm KLM() that computes a -approximation to with probability at least and runs in time .
We need a somewhat technical notion that is “close” to an -sample at the right level .
Definition 7.
Let be a measurable set. A family of pairs is called an ensemble of if and for all . A random pair is called a -digest of if there exists an ensemble of such that and . The ensemble is called a support ensemble of the digest .
Lemma 8.
Fix measurable sets . If is an ensemble of , then with probability at least , we have for all .
Proof.
Consider an arbitrary . By definition, and . In particular, where . Let us write . By concentration of Poisson variables [11],
where the second last step uses . Taking a union bound over all proves the lemma.
Corollary 9.
Fix measurable sets . If is a -digest of , then
Proof.
Let be a support ensemble of , so and . The event in the statement is implied by and the event in Lemma 8.
Lemma 10.
Let and be parameters. There is an algorithm erase-resample() that, given a multiset of objects and a random variable , returns a set of size such that is a -digest of for . The algorithm runs in time .
Proof.
The algorithm is described as Algorithm 1. The bound on the size is clear. The running time analysis is also easy: there are iterations, each running in time due to the bound on (and on ).
Next, we show the correctness. Assume first that the algorithm does not return from the if-clause. Let be the objects in in the order enumerated by the foreach-loop, and write . We define the random set as the set of points sampled from in the for--loop; observe that for every . Let be the set at the end of the iteration for . Note that with the algorithm computes in each iteration. It follows that . Since the random sets are -samples with disjoint supports and the union of supports is , we have .
Now let us analyze the probability of the algorithm aborting. Observe that the algorithm aborts if and only if for some . By the monotonicity of the size of the support , we have . Fix . Since , we have
where the second inequality follows from Lemma 8 by interpreting as a size-1 ensemble of and plugging in . By a union bound over all events , it follows that the algorithm aborts with probability at most , if .
If the algorithm does not abort, then we have shown above that it returns a set . It follows that we can compare the distribution of with the size-3 ensemble . We can bound the error probability by the probability that plus the probability that the algorithm aborts assuming , and we have bounded the latter probability by . This proves the claim.
5.2 Digesting decremental union
Next we study the decremental setting. That is, we receive a set of objects and want to build a data structure that allows efficient deletions. At any time, it needs to quickly report a digest of the union of the surviving objects (i.e., objects that have not been deleted).
Lemma 11.
Let and be parameters. Algorithm 2 supports initialize(), which initializes with a multiset of objects whose volumes are in , and delete(), which removes object from . The algorithm maintains a pair which is a -digest of at any point in time, and . In total, initialize and any sequence of delete operations run in expected time . The space complexity is .
Moreover, the set only rarely gains new points: delete() returns true if the set after the deletion is not a subset of the set before the deletion (and false otherwise); and over any sequence of deletions only deletions return true, with probability .
Proof.
Fix the initial objects and an arbitrary sequence of deletions. After deletions, let be the union of the surviving objects, and let be the variables in the algorithm. We claim that is a -digest of .
Let us prove the claim by induction. First consider initialization (). By Theorem 6, with probability at least KLM computes , and in this case the algorithm computes . Thus, erase-resample returns a -digest of by Lemma 10.
Now we proceed to . By the induction hypothesis, is a -digest of . Let be a support ensemble of . Define
Observe that and is an ensemble of since .
Let be the event that . Let be the event that for all . Note that by the induction hypothesis, and by Lemma 8.
Assuming , we have and . Let us distinguish three cases and derive further consequences:
-
(1)
If , then
So the algorithm does not refresh. As a result, and , thus .
- (2)
-
(3)
Otherwise , and the algorithm may or may not refresh. If it does, then is a -digest of as in case (2). If it does not, then and , thus .
Taking all cases into account, recalling , and adding the error probability of the new digest after refreshing, we conclude that is a -digest of . (In particular, it is a -digest of the union of the remaining objects.)
As a consequence, with probability at least we have and . On the other hand, and (because each object has volume in ), and every refresh causes to decrease by at least one. So the number of calls to refresh is bounded by . Since we have except when we do a refresh, it follows that the set can only gain points during many deletions, with probability .
The size bound follows from Lemma 10.
It remains to bound the running time and space usage. For initialize and refresh, the subroutine KLM runs in time by Theorem 6; the subroutine erase-resample runs in time by Lemma 10; and the loop runs in time since and each point in is tested against at most objects.
For delete, we spend time in the loop. An extra time may be incurred by a refresh. As we argued before, there are at most refreshes throughout the deletion sequence with probability . There can be at most refreshes with the remaining probability . So the expected time for the whole deletion sequence is .
Finally, let us analyze the space complexity. Storing in a binary search tree needs space. Storing and the counters in a table needs space. Storing needs constant space. So the algorithm uses space in total.
5.3 Handling insertions
In this section, we apply the decremental data structure from the previous section to derive a dynamic algorithm for union volume estimation, using a novel variant of the logarithmic method [4]. Throughout the algorithm, the remaining objects are partitioned into bins . Each bin holds at most objects and is implemented by the decremental data structure. Every now and then, we merge some (small) bins into a larger bin by re-initializing the target bin with the objects in the source bins. Between any two merges that involve a bin , it undergoes deletions only. At any time, we can access a digest of the union . Additionally, for every point , we keep track of the number .
Theorem 12.
Let and be parameters. Algorithm 3 maintains an initially empty multiset of objects, where each object has volume in , under updates insert() and delete() and query estimate(), which -approximates the volume of the union of and is correct with high probability. The amortized expected update time is , the query time is , and the space complexity is .
Proof.
Fix a sequence of at most insertions and deletions. Then the partition of surviving objects into bins is determined; in particular is determined, and we write . Note that the union of the surviving objects is a disjoint union of ’s, thus .
Now let us consider a call to estimate. By Lemma 11, each is a -digest of . Note that the algorithm computes , so by Corollary 9, we have with probability at least . By a union bound, this holds for all simultaneously with probability . Under this event,
We can crudely bound the additive error by , just as desired.
Next we analyze the running time. We will charge the cost of delete to insertions. Note that in delete, it takes time to compute the bin containing , if for each we store (pointers to) all objects in in a binary search tree. The last for-loop takes time . To bound the running time of the “if refreshed” block, we change our viewpoint and focus on the sequence of deletions occurring between two merges of a particular bin .
-
The total cost of is in expectation by Lemma 11.
-
With probability , there are refreshes between two merges of bin by Lemma 11, so the if-block is executed times. Each time, the algorithm recomputes for every by testing against at most objects, which takes time . Therefore, the total contribution of the if-block is in expectation.
Therefore, over the sequence of deletions between two merges of , deletions from take expected total time . Note that at least insertions occur between two merges of bin . We can thus charge the cost of deletions to insertions. Each insertion is charged times (once for every bin), so we charge each insertion with a cost of in expectation.
Now we analyze the running time of insert. It depends on the value . By Lemma 11, the merge step costs , which can be expensive in the worst case. However, bin is merged at most once every updates, so it contributes amortized cost to each insertion. Summing over all , the amortized cost of merges is per insertion. Next we consider the foreach-loops. Since each digest contains points by Lemma 11, and the algorithm spends constant time on each point, these loops take time . To summarize, insert runs in amortized expected time (and delete runs in amortized time 0).
The running time of estimate is clearly .
The space of bin is by Lemma 11, and we can charge the space of counters to it. In total the space complexity is .
References
- [1] Pankaj K. Agarwal, Lars Arge, and Frank Staals. Improved dynamic geodesic nearest neighbor searching in a simple polygon. In Proc. 34th International Symposium on Computational Geometry (SoCG), volume 99 of LIPIcs, pages 4:1–4:14, 2018. doi:10.4230/LIPIcs.SOCG.2018.4.
- [2] Pankaj K. Agarwal, Hsien-Chih Chang, Subhash Suri, Allen Xiao, and Jie Xue. Dynamic geometric set cover and hitting set. ACM Transactions on Algorithms, 18(4):40:1–40:37, 2022. doi:10.1145/3551639.
- [3] Brian Babcock, Shivnath Babu, Mayur Datar, Rajeev Motwani, and Jennifer Widom. Models and issues in data stream systems. In Proc. 21st ACM Symposium on Principles of Database Systems (PODS), pages 1–16, 2002. doi:10.1145/543613.543615.
- [4] Jon Louis Bentley and James B Saxe. Decomposable searching problems I. Static-to-dynamic transformation. Journal of Algorithms, 1(4):301–358, 1980. doi:10.1016/0196-6774(80)90015-2.
- [5] Sujoy Bhore, Karl Bringmann, Timothy M. Chan, and Yanheng Wang. Dynamic and streaming algorithms for union volume estimation, 2026. arXiv:2602.16306.
- [6] Sujoy Bhore and Timothy M. Chan. Fast static and dynamic approximation algorithms for geometric optimization problems: Piercing, independent set, vertex cover, and matching. In Proc. 2025 Annual ACM-SIAM Symposium on Discrete Algorithms (SODA), pages 2357–2386, 2025. doi:10.1137/1.9781611978322.79.
- [7] Sujoy Bhore, Martin Nöllenburg, Csaba D. Tóth, and Jules Wulms. Fully dynamic maximum independent sets of disks in polylogarithmic update time. In 40th International Symposium on Computational Geometry (SoCG), volume 293 of LIPIcs, pages 19:1–19:16, 2024. doi:10.4230/LIPIcs.SOCG.2024.19.
- [8] Vladimir Braverman. Sliding window algorithms. In Ming-Yang Kao, editor, Encyclopedia of Algorithms, pages 2006–2011. Springer New York, New York, NY, 2016. doi:10.1007/978-1-4939-2864-4_797.
- [9] Karl Bringmann and Tobias Friedrich. Approximating the volume of unions and intersections of high-dimensional geometric objects. Computational Geometry, 43(6-7):601–610, 2010. doi:10.1016/J.COMGEO.2010.03.004.
- [10] Karl Bringmann, Kasper Green Larsen, André Nusser, Eva Rotenberg, and Yanheng Wang. Approximating Klee’s measure problem and a lower bound for union volume estimation. In Proc. 41st International Symposium on Computational Geometry (SoCG), pages 25:1–25:16, 2025. doi:10.4230/LIPIcs.SOCG.2025.25.
- [11] Clément Canonne. A short note on Poisson tail bounds, 2019. URL: https://github.com/ccanonne/probabilitydistributiontoolbox/blob/master/poissonconcentration.pdf.
- [12] Nofar Carmeli, Nikolaos Tziavelis, Wolfgang Gatterbauer, Benny Kimelfeld, and Mirek Riedewald. Tractable orders for direct access to ranked answers of conjunctive queries. ACM Transactions on Database Systems, 48(1):1–45, 2023. doi:10.1145/3578517.
- [13] Nofar Carmeli, Shai Zeevi, Christoph Berkholz, Benny Kimelfeld, and Nicole Schweikardt. Answering (unions of) conjunctive queries using random access and random-order enumeration. In Proc. 39th ACM Symposium on Principles of Database Systems (PODS), pages 393–409, 2020. doi:10.1145/3375395.3387662.
- [14] Supratik Chakraborty, Kuldeep S. Meel, and Moshe Y. Vardi. A scalable approximate model counter. In Proc. 19th International Conference on Principles and Practice of Constraint Programming (CP), pages 200–216, 2013. doi:10.1007/978-3-642-40627-0_18.
- [15] Timothy M. Chan. A (slightly) faster algorithm for Klee’s measure problem. Computational Geometry, 43(3):243–250, 2010. doi:10.1016/J.COMGEO.2009.01.007.
- [16] Timothy M. Chan. Klee’s measure problem made easy. In Proc. 54th Annual IEEE Symposium on Foundations of Computer Science (FOCS), pages 410–419, 2013. doi:10.1109/FOCS.2013.51.
- [17] Timothy M. Chan, Qizheng He, Subhash Suri, and Jie Xue. Dynamic geometric set cover, revisited. SIAM Journal on Computing, 54(3):664–701, 2025. doi:10.1137/23M1596582.
- [18] Timothy M. Chan and Zhengcheng Huang. Dynamic geometric connectivity in the plane with constant query time. In 40th International Symposium on Computational Geometry (SoCG), volume 293 of LIPIcs, pages 36:1–36:13, 2024. doi:10.4230/LIPIcs.SOCG.2024.36.
- [19] Timothy M. Chan, Mihai Pătraşcu, and Liam Roditty. Dynamic connectivity: Connecting to networks and geometry. SIAM Journal on Computing, 40(2):333–349, 2011. doi:10.1137/090751670.
- [20] Timothy M. Chan and Bashir S. Sadjad. Geometric optimization problems over sliding windows. Int. J. Comput. Geom. Appl., 16(2-3):145–158, 2006. doi:10.1142/S0218195906001975.
- [21] Nilesh N. Dalvi and Dan Suciu. Efficient query evaluation on probabilistic databases. The VLDB Journal, 16(4):523–544, 2007. doi:10.1007/S00778-006-0004-3.
- [22] Mayur Datar, Aristides Gionis, Piotr Indyk, and Rajeev Motwani. Maintaining stream statistics over sliding windows. SIAM Journal on Computing, 31(6):1794–1813, 2002. doi:10.1137/S0097539701398363.
- [23] Martin E. Dyer, Alan M. Frieze, and Ravi Kannan. A random polynomial time algorithm for approximating the volume of convex bodies. Journal of the ACM, 38(1):1–17, 1991. doi:10.1145/102782.102783.
- [24] Joan Feigenbaum, Sampath Kannan, and Jian Zhang. Computing diameter in the streaming and sliding-window models. Algorithmica, 41(1):25–41, 2005. doi:10.1007/S00453-004-1105-2.
- [25] Shiyuan Feng, William Swartworth, and David P. Woodruff. Tight bounds for heavy-hitters and moment estimation in the sliding window model. In Proc. 52nd International Colloquium on Automata, Languages, and Programming (ICALP), pages 75:1–75:19, 2025. doi:10.4230/LIPIcs.ICALP.2025.75.
- [26] Gereon Frahling, Piotr Indyk, and Christian Sohler. Sampling in dynamic data streams and applications. In Proc. 21st ACM Symposium on Computational Geometry (SoCG), pages 142–149, 2005. doi:10.1145/1064092.1064116.
- [27] Egor Gorbachev and Marvin Künnemann. Combinatorial designs meet hypercliques: Higher lower bounds for Klee’s measure problem and related problems in dimensions . In Proc. 39th International Symposium on Computational Geometry (SoCG), pages 36:1–36:14, 2023. doi:10.4230/LIPIcs.SOCG.2023.36.
- [28] Monika Henzinger, Stefan Neumann, and Andreas Wiese. Dynamic approximate maximum independent set of intervals, hypercubes and hyperrectangles. In 36th International Symposium on Computational Geometry (SoCG), volume 164 of LIPIcs, pages 51:1–51:14, 2020. doi:10.4230/LIPIcs.SOCG.2020.51.
- [29] Piotr Indyk. Algorithms for dynamic geometric problems over data streams. In Proc. 36th annual ACM Symposium on Theory of Computing, pages 373–380, 2004. doi:10.1145/1007352.1007413.
- [30] Rajesh Jayaram, David P. Woodruff, and Samson Zhou. Truly perfect samplers for data streams and sliding windows. In Proc. 41st ACM Symposium on Principles of Database Systems (PODS), pages 29–40, 2022. doi:10.1145/3517804.3524139.
- [31] Hossein Jowhari, Mert Saglam, and Gábor Tardos. Tight bounds for samplers, finding duplicates in streams, and related problems. In Proc. 30th ACM Symposium on Principles of Database Systems (PODS), pages 49–58, 2011. doi:10.1145/1989284.1989289.
- [32] David R. Karger. A randomized fully polynomial time approximation scheme for the all-terminal network reliability problem. SIAM Review, 43(3):499–522, 2001. doi:10.1137/S0036144501387141.
- [33] Richard M. Karp and Michael Luby. Monte-Carlo algorithms for the planar multiterminal network reliability problem. Journal of Complexity, 1(1):45–64, 1985. doi:10.1016/0885-064X(85)90021-4.
- [34] Richard M. Karp, Michael Luby, and Neal Madras. Monte-Carlo approximation algorithms for enumeration problems. Journal of Algorithms, 10(3):429–448, 1989. doi:10.1016/0196-6774(89)90038-2.
- [35] Benny Kimelfeld, Yuri Kosharovsky, and Yehoshua Sagiv. Query efficiency in probabilistic XML models. In Proc. ACM SIGMOD International Conference on Management of Data, pages 701–714, 2008. doi:10.1145/1376616.1376687.
- [36] Victor Klee. Can the measure of be computed in less than steps? The American Mathematical Monthly, 84(4):284–285, 1977. doi:10.1080/00029890.1977.11994336.
- [37] Marvin Künnemann. A tight (non-combinatorial) conditional lower bound for Klee’s measure problem in 3D. In Proc. 63rd IEEE Annual Symposium on Foundations of Computer Science (FOCS), pages 555–566, 2022. doi:10.1109/FOCS54457.2022.00059.
- [38] Hendrik W. Lenstra Jr. Integer programming with a fixed number of variables. Mathematics of Operations Research, 8(4):538–548, 1983. doi:10.1287/moor.8.4.538.
- [39] Kuldeep S. Meel, Sourav Chakraborty, and N. V. Vinodchandran. Estimation of the size of union of Delphic sets: Achieving independence from stream size. In Proc. 41st ACM Symposium on Principles of Database Systems (PODS), pages 41–52, 2022. doi:10.1145/3517804.3526222.
- [40] Kuldeep S. Meel, N. V. Vinodchandran, and Sourav Chakraborty. Estimating the size of union of sets in streaming models. In Proc. 40th ACM Symposium on Principles of Database Systems (PODS), pages 126–137, 2021. doi:10.1145/3452021.3458333.
- [41] Shanmugavelayutham Muthukrishnan. Data streams: Algorithms and applications. Foundations and Trends® in Theoretical Computer Science, 1(2):117–236, 2005. doi:10.1561/0400000002.
- [42] Mridul Nandi, N. V. Vinodchandran, Arijit Ghosh, Kuldeep S. Meel, Soumit Pal, and Sourav Chakraborty. Improved streaming algorithm for the Klee’s measure problem and generalizations. In Proc. 27th International Workshop on Approximation, Randomization, and Combinatorial Optimization (APPROX/RANDOM), pages 26:1–26:21, 2024. doi:10.4230/LIPIcs.APPROX/RANDOM.2024.26.
- [43] Yakov Nekrich. Dynamic planar point location in optimal time. In 53rd Annual ACM SIGACT Symposium on Theory of Computing (STOC), pages 1003–1014, 2021. doi:10.1145/3406325.3451100.
- [44] Mark H. Overmars and Chee-Keng Yap. New upper bounds in Klee’s measure problem. SIAM Journal on Computing, 20(6):1034–1045, 1991. doi:10.1137/0220065.
- [45] A. Pavan, N. Variyam Vinodchandran, Arnab Bhattacharyya, and Kuldeep S. Meel. Model counting meets estimation. ACM Transactions on Database Systems, 48(3):1–28, 2023. doi:10.1145/3603496.
- [46] Christopher Ré, Nilesh Dalvi, and Dan Suciu. Efficient top- query evaluation on probabilistic data. In Proc. 23rd IEEE International Conference on Data Engineering, pages 886–895, 2006. doi:10.1109/ICDE.2007.367934.
- [47] Srikanta Tirthapura and David Woodruff. Rectangle-efficient aggregation in spatial data streams. In Proc. 31st ACM Symposium on Principles of Database Systems (PODS), pages 283–294, 2012. doi:10.1145/2213556.2213595.
- [48] David P. Woodruff and Samson Zhou. Tight bounds for adversarially robust streams and sliding windows via difference estimators. In Proc. 62nd Annual IEEE Symposium on Foundations of Computer Science (FOCS), pages 1183–1196, 2021. doi:10.1109/FOCS52979.2021.00116.
