200642: [AtCoder]ARC064 E - Cosmic Rays

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $600$ points

Problem Statement

On the $x$$y$-plane, Snuke is going to travel from the point $(x_s, y_s)$ to the point $(x_t, y_t)$. He can move in arbitrary directions with speed $1$. Here, we will consider him as a point without size.

There are $N$ circular barriers deployed on the plane. The center and the radius of the $i$-th barrier are $(x_i, y_i)$ and $r_i$, respectively. The barriers may overlap or contain each other.

A point on the plane is exposed to cosmic rays if the point is not within any of the barriers.

Snuke wants to avoid exposure to cosmic rays as much as possible during the travel. Find the minimum possible duration of time he is exposed to cosmic rays during the travel.

Constraints

  • All input values are integers.
  • $-10^9 ≤ x_s, y_s, x_t, y_t ≤ 10^9$
  • $(x_s, y_s)$ ≠ $(x_t, y_t)$
  • $1≤N≤1,000$
  • $-10^9 ≤ x_i, y_i ≤ 10^9$
  • $1 ≤ r_i ≤ 10^9$

Input

The input is given from Standard Input in the following format:

$x_s$ $y_s$ $x_t$ $y_t$
$N$
$x_1$ $y_1$ $r_1$
$x_2$ $y_2$ $r_2$
$:$
$x_N$ $y_N$ $r_N$

Output

Print the minimum possible duration of time Snuke is exposed to cosmic rays during the travel. The output is considered correct if the absolute or relative error is at most $10^{-9}$.


Sample Input 1

-2 -2 2 2
1
0 0 1

Sample Output 1

3.6568542495

An optimal route is as follows:

e9c630751968b7051df5750b7ddc0e07.png

Sample Input 2

-2 0 2 0
2
-1 0 2
1 0 2

Sample Output 2

0.0000000000

An optimal route is as follows:

fb82f6f4df5b22cffb868ce6333277aa.png

Sample Input 3

4 -2 -2 4
3
0 0 2
4 0 1
0 4 1

Sample Output 3

4.0000000000

An optimal route is as follows:

d09006720c225cbe69eae3fd9c186e67.png

Input

题意翻译

这里有一个 $x,y$ 平面。一个小偷正打算从坐标 $(xs, ys)$ 移动到坐标 $(xt, yt)$。小偷能以每次 $1$ 个单位的速度朝着任意方向移动。小偷可以看作是没有大小的一个点。 平面上有 $N$ 个圆形的障碍物。第 $i$ 个障碍物以 $(x_i, y_i)$ 为中心,$r_i$ 为半径。障碍物也许会互相重叠或互相包含。 宇宙射线会倾泻在平面上的每个不含于任何障碍物内的坐标上。 因为小偷在移动过程中想要尽可能少地暴露在宇宙射线之下,所以会以遭受最少宇宙射线的方式移动。请求出小偷在移动过程中暴露在宇宙射线之下的最短时间。

加入题单

算法标签: