A12101 | Nature Reserve
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
There is a forest that we model as a plane and live $n$ rare animals. Animal number $i$ has its lair in the point $(x_{i}, y_{i})$ . 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 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 \le n \le 10^5$ ) — the number of animals.
Each of the next $n$ lines contains two integers $x_{i}$ , $y_{i}$ ( $-10^7 \le x_{i}, y_{i} \le 10^7$ ) — the coordinates of the $i$ -th animal's lair. It is guaranteed that $y_{i} \neq 0$ . No two lairs coincide.
Each of the next $n$ lines contains two integers $x_{i}$ , $y_{i}$ ( $-10^7 \le x_{i}, y_{i} \le 10^7$ ) — the coordinates of the $i$ -th animal's lair. It is guaranteed that $y_{i} \neq 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 $\frac{|a - b|}{\max{(1, |b|)}} \le 10^{-6}$ .
Formally, let your answer be $a$ , and the jury's answer be $b$ . Your answer is considered correct if $\frac{|a - b|}{\max{(1, |b|)}} \le 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 $\frac{5}{8}$ and the center in $(\frac{1}{2},\ \frac{5}{8})$ .
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 $\frac{5}{8}$ and the center in $(\frac{1}{2},\ \frac{5}{8})$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted