In this post, we prove that for any set of points in the plane, there is a spanning tree for such that any line in the plane intersects at most edges of the spanning tree. This result was first proved by Welzl [W'88] and later generalized by Chazelle and Welzl [CW'89]. Such low crossing number spanning trees has many applications in computational geometry, e.g., for simplex range searching problems. We will see how to prove this result in the plane. The proof of this post is from Welzl [W'05].
We start with several definitions. Let be a set of points in the plane.
Definition 1 (Spanning Trees). A spanning tree of is a directed acyclic graph where is a collection of edges with endpoints in .
Definition 2 (Crossing numbers). Given a line in the plane, the crossing number of in is defined to be the number of edges in intersecting . The crossing number of a spanning tree is defined to be the maximum crossing number of any line in the plane.
Definition 3 (Weighted Lines). A line in the plane is said to be weighted if it is associated with a weight. In this post, we will assume that all the weights are real-valued.
Definition 4 (Pseudodistance between two points). Given two points in the plane, and let be a collection of weighted lines in the plane. We define the pseudodistance between in , denoted by , to be the sum of weights of lines in intersecting line segment .
We prove the following theorem.
Theorem 1 [W'88]. Every set of points in the plane has a spanning tree with crossing number .
To prove the theorem, we use the following lemma.
Lemma 1. Let be a collection of weighted lines in the plane. Let be the total weight of all lines in . Let be a set of points in the plane. There exist two points such that .
Proof of Theorem 1. We show how to construct a low crossing number spanning tree. The construction consists of steps. At each step, we add one edge into the tree and remove one of the points. Let denote the collection of all spanning tree edges we have discovered after step . We use to denote the set of remaining points after step . Initially, and .
To bound the crossing number of edges, we need to consider all possible lines in the plane. The first idea is to consider a finite collection of test lines such that for any line in the plane, either the line is in or there is a line such that the crossing numbers of and are the same. It is not hard to see that such a set exists and (the VC-dimension of a halfspace in the plane is 3).
To decide which edge to add to at step , we first update the weights of each line in . Given a line , we update its weight to be where is the number of edges it crosses in and is a parameter we will set later. After updating the weights, we find a pair of points such that , where is the total weights after updating. By Lemma 1, such a pair exists. Then we add to and remove from to get . It is not hard to show that after iterations, we get a spanning tree. We now analyze the crossing number.
The key to the analysis is to bound the total weight after step . Observe that to update , we increase the weights of at most lines in by a factor of , so
After steps, the total weight becomes
where the last inequality follows from .
On the other hand, by definition,
where is the crossing number of line in spanning tree . Thus,
We pick , which gives us
Thus for any , we must have
where the second last implication follows from .
Remark. The idea behind the construction is called iterative reweighting. This idea has also been used by Matoušek [M'92] to prove the partition theorem.
References:
[CW'89] Chazelle, Bernard, and Emo Welzl. "Quasi-optimal range searching in spaces of finite VC-dimension." Discrete & Computational Geometry 4 (1989): 467-489.
[M'92] Matoušek, Jiří. "Efficient partition trees." Proceedings of the seventh annual symposium on Computational geometry. 1991.
[W'88] Welzl, Emo. "Partition trees for triangle counting and other range searching problems." Proceedings of the fourth annual symposium on Computational geometry. 1988.
[W'05] Welzl, Emo. "On spanning trees with low crossing numbers." Data structures and efficient algorithms: Final Report on the DFG Special Joint Initiative (2005): 233-249
Comments
Post a Comment