Covering a square with n equal discs · n = 14
Place n points in the square of side 1. Let r be the distance from the worst-served place — the one farthest from every point — to the point nearest it, and make r as small as possible. Equivalently: cover the whole square with n equal discs of radius r, and make r as small as you can.
Formal definition
- ContainerThe unit square: the origin (0, 0) at its lower-left corner, (1, 1) at its upper right, boundary included
- SubmissionExactly n points, each coordinate a decimal with at most nine places; no two points may coincide
- Scorer(P) is the largest, over the square, of the distance to the nearest submitted point. The verifier finds its square exactly, then takes an exact square root rounded upward at 10⁻¹⁸ — upward, so the stored number never claims a tighter cover than the arrangement achieves
- Why this is finiteInside its own nearest-neighbour region a point is the nearest one, and |x − p|² is convex, so its largest value on a convex polygon is at a corner. The search over a continuous region collapses to finitely many rational corners, in whole numbers throughout, touching no float
- ObjectiveMake r(P) as small as possible over all legal point sets P