Convex Hull
Authors: Benjamin Qi, Neo Wang, Chuyang Wang, Mihnea Brebenel
Smallest convex polygon containing a set of points on a grid.
Prerequisites
Introduction
The Convex Hull is the subset of points that forms the smallest convex polygon which encloses all points in the set. To visualize this, imagine that each point is a pole. Then, imagine what happens if you were to wrap a rope around the outside of all the poles, and then pull infinitely hard, such that the connections between any two points that lie on the edge of the rope are lines. The set of points that touch the rope is the convex hull.
Convex Hull Visualization
Focus Problem – try your best to solve this problem before continuing!
With Graham Scan
Resources | ||||
---|---|---|---|---|
Wikipedia | ||||
VisuAlgo | ||||
UCSD |
Solution
Resources | ||||
---|---|---|---|---|
Benq |
C++
The Graham Scan algorithm works in 3 steps. First, it sorts all of the points by their counterclockwise angle around a pivot , breaking ties by distance. This algorithm uses the leftmost (and bottommost if there is a tie), point as .
We maintain a stack containing the points such that the following invariant holds: every three consecutive points of the stack form a counterclockwise turn. In other words, lies to the left of the line from to . This condition implies that the points of the stack form the vertices of a convex polygon.
To start the creation of the convex hull, we choose 2 points. The pivot (first point), and the second point based on our initial sorting. After that, we attempt to add each point in to the stack.
Denote our stack as , the top element of as and as the -th sorted candidate point. Before adding to the stack, we check whether forms a counterclockwise turn.
- If so, then we add to the stack and the invariant holds. Continue with .
- Otherwise, lies within the convex hull of the other points in the stack along with , so we pop from the stack and continue with .
Illustration
Worked Example
#include <bits/stdc++.h>using namespace std;#define FOR(i, a, b) for (int i = (a); i < (b); i++)#define FORE(i, a, b) for (int i = (a); i <= (b); i++)#define F0R(i, a) for (int i = 0; i < (a); i++)#define trav(a, x) for (auto &a : x)#define f first
With Monotone Chain
Resources | ||||
---|---|---|---|---|
CPH | ||||
Wikipedia | ||||
Benq |
Solution
With the Monotone Chain algorithm, we start by sorting the given points in ascending order with respect to their coordinates. If two points have the same coordinate, then we will look at the coordinate.
Next, we will calculate the convex hull in two parts - the upper and the lower hull. Firstly, we observe that the starting and ending points of both upper and lower hulls are the same. They are the points with the lowest and highest value respectively, and . We start by adding and to the hull. (Note that doesn't necessarily have to be on the convex hull at the end). Then, starting from , we iterate through the sorted points and add them to the hull. Let's denote the current point being added as and the last point still on the hull as . When adding new points, we want to make sure that there is no right turn among all segments of the hull, just like in the Graham Scan algorithm discussed above. To achieve this, the segment should always be on the right side of the segment . This can be calculated by using a cross-product:
- If , the point lies on the left side of the segment . In this case, we have to remove point from the hull and repeat this check.
- If , the point lies on the segment . Whether to include multiple collinear points depends on the question, but for the given question above, we will remove the point as well and repeat the check.
- Otherwise, the point lies on the right side of the segment . In this case, we can add to the hull and process the next point from the given point list.
After all the points have been processed, we have found the lower hull and will begin to find the upper hull in the same manner. This time, we add point to the hull and iterate from the end of the points, , to the starting point . (The point also doesn't necessarily have to be the convex hull and could be removed if it causes a right turn).
At the end, we have got all points of the convex hull in the counterclockwise order. To do this in the clockwise order, one only has to change the condition for from more than 0 to less than 0. In this case, the upper hull will be found first and then the lower hull.
This algorithm takes time to sort the points and time to calculate the hull, giving a final time complexity of .
An animation of how it works:
Worked Example
C++
#include <bits/stdc++.h>using namespace std;using pii = pair<int, int>;vector<pii> points;vector<pii> hull;// cross product, the signed area of these there pointsint area(pii O, pii P, pii Q) {
Java
import java.io.*;import java.util.*;public class ConvexHull {public static void main(String[] args) throws IOException {BufferedReader in = new BufferedReader(new InputStreamReader(System.in));int N = Integer.parseInt(in.readLine());while (N > 0) {// use a hashset to distinct the points
Rotating Calipers
Focus Problem – try your best to solve this problem before continuing!
Solution
Resources | ||||
---|---|---|---|---|
CF |
This section is not complete.
Problems
Status | Source | Problem Name | Difficulty | Tags | |
---|---|---|---|---|---|
CF | Easy | Show TagsConvex | |||
Platinum | Normal | Show TagsConvex | |||
CF | Normal | Show TagsConvex, PURS | |||
Old Gold | Normal | Show TagsConvex | |||
Kattis | Hard | Show TagsConvex | |||
Balkan OI | Hard | Show TagsConvex, MST | |||
AC | Very Hard | Show TagsConvex |
Module Progress:
Join the USACO Forum!
Stuck on a problem, or don't understand a module? Join the USACO Forum and get help from other competitive programmers!