6899.Convex Hull

Time Limit: 1s Memory Limit: 512MB

Given a set of $n$ points in the two-dimensional plane, your task is to determine the convex hull of the points.

Input Format(From the terminal/stdin)

The first input line has an integer $n$ : the number of points.

After this, there are $n$ lines that describe the points. Each line has two integers $x$ and $y$ : the coordinates of a point.

You may assume that each point is distinct, and the area of the hull is positive.

  • $3 \le n \le 2 \cdot 10^5$
  • $-10^9 \le x, y \le 10^9$

Output Format(To the terminal/stdout)

First print an integer $k$ : the number of points in the convex hull.

After this, print $k$ lines that describe the points. You can print the points in any order. Print all points that lie on the convex hull.

Sample Input

Copy
6
2 1
2 5
3 3
4 3
4 4
6 3
 \n
 · \n
 · \n
 · \n
 · \n
 · \n
 · \n

Sample Output special judge

Copy
4
2 1
2 5
4 4
6 3
 \n
 · \n
 · \n
 · \n
 · \n
Source: CSES, Geometry, 2195

Submit

请先 登录

© 2025 FAQs