Editorial for Baltic OI '14 P4 - Demarcation
Submitting an official solution before solving the problem yourself is a bannable offence.
First of all, let's introduce some operations which are used in each subtask.
- the figure is rotated around the axes origin. This is done by swapping and coordinates and negating the coordinate of each point. - the figure is moved in the way that the leftmost (and lowermost if there are many) point is moved to the axes origin. - the figure is reflected by negating the coordinate of each point. - checking whether two figures are congruent. This is done by the first figure and , the second figure (four times) and each time checking if both sets of points are equal. If no, then it is tried to the second figure and run the same operations once again. If this is unsuccessful, then the figures are not congruent.
Additionally, it is needed to implement a function which cuts the figure along the given segment. The result of this function - two new figures.
The main idea - when considering two figures, they can be congruent only if they are of equal perimeters or areas. There is at most one horizontal and one vertical segment cut that gives such two figures. It can not cross any other edges of the polygon. Otherwise, there may be many segments.
Moreover, we can solve the problem by considering only the vertical cuts. We can rotate the polygon and use the same solution - the horizontal cuts will be considered too.
Subtask 1
We can see that it is possible to apply the binary search to find the
The complexity of this algorithm is
Subtask 2
Let's loop over all pairs of horizontal edges. In each loop, calculate the sum of lengths of edges between these edges. Get the
The complexity of this algorithm is
Subtask 3
We can easily improve the algorithm which was used in the previous case by precomputing the prefix sums of lengths of edges.
Other more sophisticated algorithm uses two pointers paradigm.
Firstly, we set both pointers (
The complexity of both algorithms is
Subtask 4
There are two main ways to implement an effective algorithm (based on equal perimeters or equal areas). We will describe the first one.
The idea is to use line sweep paradigm.
Make events for all edges which include the following information: the
Also let's keep a set with the
When processing each event we find the influenced edge in the set and the uppermost lower edge as well as the lowermost upper edge. Then we calculate the
The complexity of this algorithm is
Comments