406665: GYM102482 G Panda Preserve

Memory Limit:256 MB Time Limit:10 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

G. Panda Preservetime limit per test10 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard output

Last month, Sichuan province secured funding to establish the Great Panda National Park, a natural preserve for a population of more than $$$1800$$$ giant pandas. The park will be surrounded by a polygonal fence. In order for researchers to track the pandas, wireless receivers will be placed at each vertex of the enclosing polygon and each animal will be outfitted with a wireless transmitter. Each wireless receiver will cover a circular area centered at the location of the receiver, and all receivers will have the same range. Naturally, receivers with smaller range are cheaper, so your goal is to determine the smallest possible range that suffices to cover the entire park.

As an example, Figure G.1 shows the park described by the first sample input. Notice that a wireless range of 35 does not suffice (a), while the optimal range of 50 covers the entire park (b).

Figure G.1: Illustration of Sample Input 1.

Input

The first line of the input contains an integer $$$n$$$ ($$$3 \le n \le 2 000$$$) specifying the number of vertices of the polygon bounding the park. This is followed by $$$n$$$ lines, each containing two integers $$$x$$$ and $$$y$$$ ($$$|x|$$$, $$$|y| \le 10^4$$$) that give the coordinates ($$$x$$$, $$$y$$$) of the vertices of the polygon in counter-clockwise order. The polygon is simple; that is, its vertices are distinct and no two edges of the polygon intersect or touch, except that consecutive edges touch at their common vertex.

Output

Display the minimum wireless range that suffices to cover the park, with an absolute or relative error of at most $$$10^{-6}$$$.

ExamplesInput
5
0 0
170 0
140 30
60 30
0 70
Output
50
Input
5
0 0
170 0
140 30
60 30
0 100
Output
51.538820320
Input
5
0 0
1 2
1 5
0 2
0 1
Output
1.581138830

加入题单

上一题 下一题 算法标签: