luogu#P4724. 【模板】三维凸包
【模板】三维凸包
Problem Description
Given points in 3D space, find the surface area of their convex hull.
Input Format
The first line contains an integer , which is the number of points.
The next lines each contain three real numbers , describing the coordinates.
Output Format
Output the surface area of the convex hull, rounded to decimal places.
4
0 0 0
1 0 0
0 1 0
0 0 1
2.366
Hint
Translated by ChatGPT 5