CF1059D.Nature Reserve
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
There is a forest that we model as a plane and live n rare animals. Animal number i has its lair in the point (xi,yi) . In order to protect them, a decision to build a nature reserve has been made.
The reserve must have a form of a circle containing all lairs. There is also a straight river flowing through the forest. All animals drink from this river, therefore it must have at least one common point with the reserve. On the other hand, ships constantly sail along the river, so the reserve must not have more than one common point with the river.
For convenience, scientists have made a transformation of coordinates so that the river is defined by y=0 . Check whether it is possible to build a reserve, and if possible, find the minimum possible radius of such a reserve.
输入格式
The first line contains one integer n ( 1≤n≤105 ) — the number of animals.
Each of the next n lines contains two integers xi , yi ( −107≤xi,yi≤107 ) — the coordinates of the i -th animal's lair. It is guaranteed that yi=0 . No two lairs coincide.
输出格式
If the reserve cannot be built, print −1 . Otherwise print the minimum radius. Your answer will be accepted if absolute or relative error does not exceed 10−6 .
Formally, let your answer be a , and the jury's answer be b . Your answer is considered correct if max(1,∣b∣)∣a−b∣≤10−6 .
输入输出样例
输入#1
1 0 1
输出#1
0.5
输入#2
3 0 1 0 2 0 -3
输出#2
-1
输入#3
2 0 1 1 1
输出#3
0.625
说明/提示
In the first sample it is optimal to build the reserve with the radius equal to 0.5 and the center in (0, 0.5) .
In the second sample it is impossible to build a reserve.
In the third sample it is optimal to build the reserve with the radius equal to 85 and the center in (21, 85) .