Problem C
Roundelays
Roundelay is a game where people dance in a circle holding hands, and some people might stand in the middle of the circle. You saw kids playing this game in two groups (two roundelays). Unfortunately, you completely forgot who was holding hands with whom. The only two things you remember are that both groups (including children holding hands and in the middle) had the same number of children, and the total number of children in the middle of the two roundelays was minimal across all possible hand-holding configurations.
Each child’s position is given by a 2D coordinate in the
![\includegraphics[width=0.6\textwidth ]{roundelays.png}](/problems/roundelays/file/statement/en/img-0001.png)
For example, in the figure above, there are
Note that, in general, roundelays do not have to be squares like in the above example. They can be any shape that satisfies the requirements in the problem statement (that is, they can be any convex polygon). Moreover, it is possible for a roundelay to have no children in the middle of it.
Input
The input starts with one line containing an even integer
This is followed by
It is guaranteed that no two children have the same
coordinates, and no line through two children passes within
Output
Output one line containing a single integer
Sample Input 1 | Sample Output 1 |
---|---|
10 1 1 -1 -1 -1 1 1 -1 0 -0.5 4 3 4 5 6 3 6 5 5 4.5 |
2 |
Sample Input 2 | Sample Output 2 |
---|---|
6 0 0 0 2 2 0 -1 2 -1 -2 4 4 |
0 |