Largest Triangle
시간 제한: 1000ms메모리 제한: 2048MB출처: ICPC Asia Tehran Regional Contest 2023BOJ 33182
이 문제는 본문 이미지 일부가 표시되지 않습니다. 텍스트만으로 풀이가 어려울 수 있습니다.
문제
A “terrain” is an -monotone polygon defined by the points where each point has coordinates , and the following three conditions hold:
- for
- for
Given a terrain defined by the points , find the largest triangle that fits entirely within the terrain, and one of its three vertices is positioned at one of the terrain points through .
[이미지 1]
입력
The first line of input contains an integer , representing the number of points in the terrain (). The th line in the following lines consists of two space-separated integers and , representing the point of the terrain ().
출력
Print the area of the largest triangle contained within the terrain. Your output will be considered correct if its absolute or relative error is at most .
예제
예제 1
입력
11 0 0 2 10 4 5 6 7 8 8 10 4 12 6 14 4 15 4 16 7 17 0
출력
53.666667
코드를 제출하려면 로그인하세요.