CF190B.Surrounded

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

So, the Berland is at war with its eternal enemy Flatland again, and Vasya, an accountant, was assigned to fulfil his duty to the nation.

Right now the situation in Berland is dismal — their both cities are surrounded! The armies of flatlanders stand on the borders of circles, the circles' centers are in the surrounded cities. At any moment all points of the flatland ring can begin to move quickly in the direction of the city — that's the strategy the flatlanders usually follow when they besiege cities.

The berlanders are sure that they can repel the enemy's attack if they learn the exact time the attack starts. For that they need to construct a radar that would register any movement at the distance of at most rr from it. Thus, we can install a radar at such point, that at least one point of the enemy ring will be in its detecting range (that is, at a distance of at most rr ). Then the radar can immediately inform about the enemy's attack.

Due to the newest technologies, we can place a radar at any point without any problems. But the problem is that the berlanders have the time to make only one radar. Besides, the larger the detection radius (r)(r) is, the more the radar costs.

That's why Vasya's task (that is, your task) is to find the minimum possible detection radius for the radar. In other words, your task is to find the minimum radius rr (r>=0)(r>=0) such, that a radar with radius rr can be installed at some point and it can register the start of the movements of both flatland rings from that point.

In this problem you can consider the cities as material points, the attacking enemy rings - as circles with centers in the cities, the radar's detection range — as a disk (including the border) with the center at the point where the radar is placed.

输入格式

The input files consist of two lines. Each line represents the city and the flatland ring that surrounds it as three space-separated integers xix_{i} , yiy_{i} , rir_{i} (xi,yi<=104; 1<=ri<=104)(|x_{i}|,|y_{i}|<=10^{4}; 1<=r_{i}<=10^{4}) — the city's coordinates and the distance from the city to the flatlanders, correspondingly.

It is guaranteed that the cities are located at different points.

输出格式

Print a single real number — the minimum detection radius of the described radar. The answer is considered correct if the absolute or relative error does not exceed 10610^{-6} .

输入输出样例

  • 输入#1

    0 0 1
    6 0 3
    

    输出#1

    1.000000000000000
  • 输入#2

    -10 10 3
    10 -10 3
    

    输出#2

    11.142135623730951

说明/提示

The figure below shows the answer to the first sample. In this sample the best decision is to put the radar at point with coordinates (2,0)(2,0) .

The figure below shows the answer for the second sample. In this sample the best decision is to put the radar at point with coordinates (0,0)(0,0) .

首页