Kids Like Cakes | 프로그래밍의 벗 PivotOJ
PivotOJ

Kids Like Cakes

시간 제한: 5000ms메모리 제한: 256MB출처: NEERC Northern Subregional 2011BOJ 3517
이 문제는 본문 이미지 일부가 표시되지 않습니다. 텍스트만으로 풀이가 어려울 수 있습니다.

문제

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.

[이미지 1]

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

입력

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

출력

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.

예제

예제 1

입력
5
0 0
-1 6
0 7
2 8
7 7
출력
24.0
2 5 1
2 3 4
코드를 제출하려면 로그인하세요.