A10398 | Runaway to a Shadow
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Dima is living in a dormitory, as well as some cockroaches.
At the moment $0$ Dima saw a cockroach running on a table and decided to kill it. Dima needs exactly $T$ seconds for aiming, and after that he will precisely strike the cockroach and finish it.
To survive the cockroach has to run into a shadow, cast by round plates standing on the table, in $T$ seconds. Shadow casted by any of the plates has the shape of a circle. Shadow circles may intersect, nest or overlap arbitrarily.
The cockroach uses the following strategy: first he equiprobably picks a direction to run towards and then runs towards it with the constant speed $v$ . If at some moment $t<=T$ it reaches any shadow circle, it immediately stops in the shadow and thus will stay alive. Otherwise the cockroach is killed by the Dima's precise strike. Consider that the Dima's precise strike is instant.
Determine the probability of that the cockroach will stay alive.
At the moment $0$ Dima saw a cockroach running on a table and decided to kill it. Dima needs exactly $T$ seconds for aiming, and after that he will precisely strike the cockroach and finish it.
To survive the cockroach has to run into a shadow, cast by round plates standing on the table, in $T$ seconds. Shadow casted by any of the plates has the shape of a circle. Shadow circles may intersect, nest or overlap arbitrarily.
The cockroach uses the following strategy: first he equiprobably picks a direction to run towards and then runs towards it with the constant speed $v$ . If at some moment $t<=T$ it reaches any shadow circle, it immediately stops in the shadow and thus will stay alive. Otherwise the cockroach is killed by the Dima's precise strike. Consider that the Dima's precise strike is instant.
Determine the probability of that the cockroach will stay alive.
输入格式
In the first line of the input the four integers $x_{0}$ , $y_{0}$ , $v$ , $T$ ( $|x_{0}|,|y_{0}|<=10^{9}$ , $0<=v,T<=10^{9}$ ) are given — the cockroach initial position on the table in the Cartesian system at the moment $0$ , the cockroach's constant speed and the time in seconds Dima needs for aiming respectively.
In the next line the only number $n$ ( $1<=n<=100000$ ) is given — the number of shadow circles casted by plates.
In the next $n$ lines shadow circle description is given: the $i^{th}$ of them consists of three integers $x_{i}$ , $y_{i}$ , $r_{i}$ ( $|x_{i}|,|y_{i}|<=10^{9}$ , $0<=r<=10^{9}$ ) — the $i^{th}$ shadow circle on-table position in the Cartesian system and its radius respectively.
Consider that the table is big enough for the cockroach not to run to the table edges and avoid Dima's precise strike.
In the next line the only number $n$ ( $1<=n<=100000$ ) is given — the number of shadow circles casted by plates.
In the next $n$ lines shadow circle description is given: the $i^{th}$ of them consists of three integers $x_{i}$ , $y_{i}$ , $r_{i}$ ( $|x_{i}|,|y_{i}|<=10^{9}$ , $0<=r<=10^{9}$ ) — the $i^{th}$ shadow circle on-table position in the Cartesian system and its radius respectively.
Consider that the table is big enough for the cockroach not to run to the table edges and avoid Dima's precise strike.
输出格式
Print the only real number $p$ — the probability of that the cockroach will stay alive.
Your answer will be considered correct if its absolute or relative error does not exceed $10^{-4}$ .
Your answer will be considered correct if its absolute or relative error does not exceed $10^{-4}$ .
输入输出样例
输入 #1
0 0 1 1 3 1 1 1 -1 -1 1 -2 2 1
输出 #1
0.50000000000
输入 #2
0 0 1 0 1 1 0 1
输出 #2
1.00000000000
The picture for the first sample is given below.
Red color stands for points which being chosen as the cockroach's running direction will cause him being killed, green color for those standing for survival directions. Please note that despite containing a circle centered in $(-2,2)$ a part of zone is colored red because the cockroach is not able to reach it in one second.
Red color stands for points which being chosen as the cockroach's running direction will cause him being killed, green color for those standing for survival directions. Please note that despite containing a circle centered in $(-2,2)$ a part of zone is colored red because the cockroach is not able to reach it in one second.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted