Geometry -> Nearest Pair of Points
Find the global closest Euclidean pair in one static planar point set through an x-sorted sweep and a y-ordered active strip.
- Topic slug:
geometry/nearest-pair
- Tutorial page: Open tutorial
- Ladder page: Open ladder
- Repo problems currently tagged here:
1
- Repo companion pages:
4
- Curated external problems:
2
Microtopics
- closest-pair
- active-strip
- x-sweep
- y-ordered-set
- packing-bound
- squared-distance
Learning Sources
Repo Companion Material
Curated External Problems
Core
| Problem |
Source |
Difficulty |
Context |
Style |
Prerequisites |
Tags |
Why it fits |
| Closest Pair |
AOJ |
Medium |
Sweep-Line |
Geometry; Implementation |
Sorting Points; Ordered Set By Y; Squared Distance Bookkeeping |
Closest Pair; Active Strip; Euclidean Distance; Ordered Set |
The cleanest official nearest-pair benchmark where the intended route is exactly the standard x-sorted sweep with a y-ordered active strip. |
Challenge
| Problem |
Source |
Difficulty |
Context |
Style |
Prerequisites |
Tags |
Why it fits |
| Minimum Euclidean Distance |
CSES |
Hard |
- |
Implementation; Sweep-Line |
Sorting Points; Active Strip; Integer Distance Arithmetic |
Closest Pair; Sweep Line; Squared Distance; Plane Geometry |
A harder verifier-style sibling where the same nearest-pair sweep must be implemented carefully enough for contest-sized integer input. |
Repo Problems
| Code |
Title |
Fit |
Difficulty |
Pattern |
Note |
Solution |
CLOSESTPAIR |
Closest Pair |
primary |
medium |
- |
Note |
Code |
Regeneration
python3 scripts/generate_problem_catalog.py