A10398. Runaway to a Shadow
编程题
普及/提高-
知识点
题目描述
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.