
| Contests | Virtual Contests | Problems | Submit | Runs Status | Rank List | Forum |
Input
The input consists of T test cases. The number of them (T) is given on the first
line of the input. Each test case begins with a line containing a single integer
N (3 ≤ N ≤ 1000000) indicating the number of points that form the polygon.
This is followed by N lines, each containing two integers Xi and Yi (|Xi|, |Yi|
≤ 20000). These numbers are the coordinates of the i-th point. When we connect
the points in the given order, we get a polygon. You may assume that the edges
never touch each other (except the neighboring ones) and that they never cross.
The area of the polygon is never zero, i.e. it cannot collapse into a single
line.
Output
Print exactly one line for each test case. The line should contain exactly two
numbers separated by one space. These numbers are the coordinates of the centre
of gravity. Round the coordinates to the nearest number with exactly two digits
after the decimal point (0.005 rounds up to 0.01). Note that the centre of gravity
may be outside the polygon, if its shape is not convex. If there is such a case
in the input data, print the centre anyway.
Sample Input
2
4
5 0
0 5
-5 0
0 -5
4
1 1
11 1
11 11
1 11
Sample Output
0.00 0.00
6.00 6.00