Editorial for Bubble Cup V8 E Spectator Riots
Submitting an official solution before solving the problem yourself is a bannable offence.
First we simplify the problem by replacing the initial set of points with the set of all points where some fan might appear after one second, call that set
Now, for some arbitrary circle that passes through some three points of
After drawing a few examples, we can notice that we can always catch most of the points that are possible locations of some fan or even all of them. We can write a brute-force solution that will increase our suspicion that all fans can be caught, no matter how they move.
Now let's try to find the largest circle of those that surely catches all fans and doesn't violate the rules in the problem. It is easy to see that three fixed points that determine the circle must lie on the convex hull of
Convex hull can be computed in
Notice that for every fan in input, if his speed is
The trick is to take only the convex hull of those
After computing the convex hull of
These two claims can be proven geometrically:
- For a convex polygon, the largest circle among all circumcircles of triangles determined by the polygon vertices will surely contain all vertices of the polygon on it or inside it.
- For a convex polygon, the largest circumcircle of some triangle that is determined by vertices of the polygon is a circumcircle of a triangle that contains three consecutive vertices of a polygon.
With 1 and 2 we conclude:
The largest circle among those that are circumscribed around triangles that are composed of three consecutive vertices of
This means that we can finish the problem easily in linear time (with respect to the size of the convex hull).
Comments