列表

详情


NC207714. PandaPreserve

描述

Last month, Sichuan province secured funding to establish the Great Panda National Park, a natural preserve for a population of more than 18001800 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.

输入描述

The first line of the input contains an integer nn (3≤n≤2000) specifying the number of vertices of the polygon bounding the park. This is followed by nn lines, each containing two integers x and y (|x|, |y|≤104) 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.

输出描述

Display the minimum wireless range that suffices to cover the park, with an absolute or relative error of at most 10−6.

示例1

输入:

5
0 0
170 0
140 30
60 30
0 70

输出:

50

示例2

输入:

5
0 0
170 0
140 30
60 30
0 100

输出:

51.538820320

示例3

输入:

5
0 0
1 2
1 5
0 2
0 1

输出:

1.581138830

原站题解

上次编辑到这里,代码来自缓存 点击恢复默认模板

上一题