Geometry
Model
- RAM
- operations on reals, including sqrts.
- (why OK)
- line segment intersections
- DISCRETE randomization
Applications:
- graphics of course
- any domain where few variables, many constraints
Point location in line arrangements
setup:
- n lines in plane
- gives O(n2) convex regions
- goal: given point, find containing region.
- for convenience, use triangulated T(L)
- triangulation introduces O(n2) segments (planar graph)
- assume all inside a bounding triangle
how about a binary space partition?
- single line splits input into two groups of n-1 rays
- search time (depth) could be n
A good algorithm:
- choose r random lines R, triangulate
- inside each triangle, some lines.
- good if each triangle has only an(logr)/r lines in it
- choose r so this is <n/2
- will show good with prob. 1/2
- recurse in each triangle---halves lines
- search by finding right triangle then searching its child structure
Simple analysis:
- n2 triangles
- prob. bad one “lives” is 2−r
- so take r=O(logn); whp no bad triangles
- polylog time to find root triangle
- so polylogarithmic search time
- better analysis shortly
Proof of good
- As with cut sampling, consider individual “problem” events, show unlikely
- Let Δ be all triplets of L-intersections
- when δ∈Δ is bad:
- let I(δ) be number of lines hitting δ
- let G(δ) be lines that induce δ (at least 3, at most 6)
- for bad δ, must have all lines of G(δ) in R (call this B1(δ)), no lines of I(δ) in R (call this B2(δ).
- bound prob. of bad δ:
- we know Pr[δ]≤Pr[B1(δ)]Pr[B2(δ)∣B1(δ)] (why not equal? Because triangulation may not create triangle from δ)
- Given B1(δ), still need r−|G(δ)|≥r−6≥r/2 drawings (assuming r>12)
- prob. none picked is at most (1−|I(δ)|n)r/2≤e−rI(δ)/2n
- Only care if I(δ)>an(logr)/r---large triplets
- Pr[B2(δ)∣B1(δ)]≤r−a/2 for large triplet
- prob. some bad at most r−a/2∑δPr[B1(δ)]
- sum is expected number of large triplets.
- at most r2 points in sample
- at most (r2)3=r6 triplets in sample
- expectation at most r6
- choose a>12, deduce result.
Construction time:
- Construction recurrence: T(n)≤nr2+cr2T(anlogrr)=O(n2+ϵ(r))
- ϵ decreasing with r
- by choosing large r, arbitrarily close to O(n2)
- Space recurrence: replace nr2 by r, but get same bound
- Note n2 line intersections, so this is lower bound
Randomized incremental construction
Special sampling idea:
- Sample all except one item
- hope final addition makes small or no change
Method:
- process items in order
- average case analysis
- randomize order to achieve average case
- e.g. binary tree for sorting
Convex Hulls
Define
- assume no 3 points on straight line.
- output:
- points and edges on hull
- in counterclockwise order
- can leave out edges by hacking implementation
algorithm (RIC):
- random order pi
- insert one at a time (to get Si)
- update \em conv(Si−1)→\em conv(Si)
- new point stretches convex hull
- remove new non-hull points
- revise hull structure
Data structure:
- point p0 inside hull (how find? centroid of 3 vertices.)
- for each p, edge of \em conv(Si) hit by →p0p
- say p cuts this edge
- To update pi in \em conv(Si−1):
- if pi inside, discard
- delete new non hull vertices and edges
- 2 vertices v1,v2 of \em conv(Si−1) become pi-neighbors
- other vertices unchanged.
- To implement:
- detect changes by moving out from edge cut by →p0p.
- for each hull edge deleted, must update cut-pointers to →piv1 or →piv2
Runtime analysis
- deletion cost of edges:
- charge to creation cost
- 2 edges created per step
- total work O(n)
- pointer update cost
- proportional to number of pointers crossing a deleted cut edge
- backwards analysis
- run backwards
- delete random point of Si ( not \em conv(Si)) to get Si−1
- same number of pointers updated
- expected number O(n/i)
- what Pr[update p]?
- Pr[delete cut edge of p]
- Pr[delete endpoint edge of p]
- 2/i
- deduce O(nlogn) runtime
Book studies 3d convex hull using same idea, time O(nlogn), also gets voronoi diagram and Delauney triangulations.