A12695 | Tokitsukaze and Explosion
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Tokitsukaze and her friends are trying to infiltrate a secret base built by Claris. However, Claris has been aware of that and set a bomb which is going to explode in a minute. Although they try to escape, they have no place to go after they find that the door has been locked.
At this very moment, CJB, Father of Tokitsukaze comes. With his magical power given by Ereshkigal, the goddess of the underworld, CJB is able to set $m$ barriers to protect them from the explosion. Formally, let's build a Cartesian coordinate system on the plane and assume the bomb is at $O(0, 0)$ . There are $n$ persons in Tokitsukaze's crew, the $i$ -th one of whom is at $P_i(X_i, Y_i)$ . Every barrier can be considered as a line with infinity length and they can intersect each other. For every person from Tokitsukaze's crew, there must be at least one barrier separating the bomb and him, which means the line between the bomb and him intersects with at least one barrier. In this definition, if there exists a person standing at the position of the bomb, any line through $O(0, 0)$ will satisfy the requirement.
Although CJB is very powerful, he still wants his barriers to be as far from the bomb as possible, in order to conserve his energy. Please help him calculate the maximum distance between the bomb and the closest barrier while all of Tokitsukaze's crew are safe.
At this very moment, CJB, Father of Tokitsukaze comes. With his magical power given by Ereshkigal, the goddess of the underworld, CJB is able to set $m$ barriers to protect them from the explosion. Formally, let's build a Cartesian coordinate system on the plane and assume the bomb is at $O(0, 0)$ . There are $n$ persons in Tokitsukaze's crew, the $i$ -th one of whom is at $P_i(X_i, Y_i)$ . Every barrier can be considered as a line with infinity length and they can intersect each other. For every person from Tokitsukaze's crew, there must be at least one barrier separating the bomb and him, which means the line between the bomb and him intersects with at least one barrier. In this definition, if there exists a person standing at the position of the bomb, any line through $O(0, 0)$ will satisfy the requirement.
Although CJB is very powerful, he still wants his barriers to be as far from the bomb as possible, in order to conserve his energy. Please help him calculate the maximum distance between the bomb and the closest barrier while all of Tokitsukaze's crew are safe.
输入格式
The first line contains two integers $n$ , $m$ ( $1 \leq n, m \leq 10^5$ ), indicating the number of people and the number of barriers respectively.
The $i$ -th line of the next $n$ lines contains two integers $X_i$ , $Y_i$ ( $-10^5 \leq X_i, Y_i \leq 10^5$ ), indicating the $i$ -th person's location $P_i(X_i, Y_i)$ . Note that $P_i$ may have the same coordinates as $P_j$ ( $j \neq i$ ) or even $O$ .
The $i$ -th line of the next $n$ lines contains two integers $X_i$ , $Y_i$ ( $-10^5 \leq X_i, Y_i \leq 10^5$ ), indicating the $i$ -th person's location $P_i(X_i, Y_i)$ . Note that $P_i$ may have the same coordinates as $P_j$ ( $j \neq i$ ) or even $O$ .
输出格式
Print a single real number — the maximum distance meeting the requirement. Your answer is considered correct if its 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 accepted if and only if $\frac{|a - b|}{\max(1, |b|)} \leq 10^{-6}$ .
Formally, let your answer be $a$ , and the jury's answer be $b$ . Your answer is accepted if and only if $\frac{|a - b|}{\max(1, |b|)} \leq 10^{-6}$ .
输入输出样例
输入 #1
3 1 2 0 0 2 -1 0
输出 #1
0.0000000000
输入 #2
1 1 0 0
输出 #2
0.0000000000
输入 #3
2 1 -1 -1 -1 -1
输出 #3
1.4142135617
输入 #4
3 100000 3 2 -1 -3 2 -5
输出 #4
3.1622776602
In the first two examples, CJB must set the barrier crossing $O(0, 0)$ .
In the last two examples, CJB can set each barrier crossing some $P_i$ such that the barrier is perpendicular to the line between $P_i$ and $O$ .
In the last two examples, CJB can set each barrier crossing some $P_i$ such that the barrier is perpendicular to the line between $P_i$ and $O$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted