eolymp
bolt
Try our new interface for solving problems
Problems

Kids Like Cakes

Kids Like Cakes

Kids like cakes. It's obvious. In this problem, we consider only cakes having the form of a convex polygon, as viewed from above.

Every cake needs to be split into pieces. In this problem, every piece should have a form of a non-degenerate triangle with vertices at original cake's vertices. The pieces may not intersect, and their union should form the original cake.

Some kids also like fairness. Let's call the *unfairness number* of a cake the maximal possible difference between the areas of the largest and the smallest pieces of it.

prb2380

Your task is to find the unfairness number of a given cake.

Input

The first line of the input file contains a single integer number n - the number of vertices of the cake (4n5000). The following n lines contain two integers xi, yi each - the coordinates of the vertices (-108xi, yi108).

Output

The first line of the output file must contain a single number with exactly one digit after the decimal point - the unfairness number of the cake.

The following two lines must describe the way to split the cake to get such unfairness number. The first of them should contain three indices of vertices of the largest piece in it. The second one should contain three indices of vertices of the smallest piece. Vertices are numbered from 1 to n.

Time limit 5 seconds
Memory limit 256 MiB
Input example #1
5
0 0
-1 6
0 7
2 8
7 7
Output example #1
24.0
2 5 1
2 3 4