The answer is the perimeter of the convex hull of all the grazing points. Use Graham Scan to calculate the convex hull, because it’s efficient and easy to implement:
- First, pick a point that has smallest x coordinate. Use y coordinate to break ties if necessary. Let’s call this point the base point.
- Then iterate for the rest of the points, calculate the polar angle between the current point and the base point.
- Now we get all points and their polar angles with respect to the base point, sort these points based on polar angle.
- Walk through the sorted points and make sure a new point only appear in the counter clock wise direction (turn left) of the current point. Add the new point to the result, and drop old points if necessary.
- We should now have a convex hull point sets available. Calculate the perimeter is now trivial.
This implementation also dealt with degenerated case where the points are co-linear.
|