시간 제한메모리 제한제출정답맞힌 사람정답 비율
4 초 (추가 시간 없음) 2048 MB106322025.000%

문제

After a long time living abroad, you have decided to move back to Italy and have to find a place to live, but things are not so easy due to the ongoing global pandemic.

Your three friends Fabio, Flavio and Francesco live at the points with coordinates $(x_1, y_1)$, $(x_2, y_2)$ and $(x_3, y_3)$, respectively. Due to the mobility restrictions in response to the pandemic, meetings are limited to $3$ persons, so you will only be able to meet $2$ of your friends at a time. Moreover, in order to contain the spread of the infection, the authorities have imposed the following additional measure: for each meeting, the sum of the lengths travelled by each of the attendees from their residence place to the place of the meeting must not exceed $r$.

What is the minimum value of $r$ (which can be any nonnegative real number) for which there exists a place of residence that allows you to hold the three possible meetings involving you and two of your friends? Note that the chosen place of residence need not have integer coordinates.

입력

The first line contains the two integers $x_1$, $y_1$ ($-10^4 ≤ x_1, y_1 ≤ 10^4$) — the coordinates of the house of your friend Fabio.

The second line contains the two integers $x_2$, $y_2$ ($-10^4 ≤ x_2, y_2 ≤ 10^4$) — the coordinates of the house of your friend Flavio.

The third line contains the two integers $x_3$, $y_3$ ($-10^4 ≤ x_3, y_3 ≤ 10^4$) — the coordinates of the house of your friend Francesco.

It is guaranteed that your three friends live in different places (i.e., the three points $(x_1, y_1)$, $(x_2, y_2)$, $(x_3, y_3)$ are guaranteed to be distinct).

출력

Print the minimum value of $r$ which allows you to find a residence place satisfying the above conditions. Your answer is considered correct if its absolute or relative error does not exceed $10^{-4}$. 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|)}} ≤ 10^{-4}$.

예제 입력 1

0 0
5 0
3 3

예제 출력 1

5.0686143166

Explanation of sample 1.

Fabio, Flavio and Francesco live at the points with coordinates $(0, 0)$, $(5, 0)$ and $(3, 3)$ respectively. The optimal place of residence, represented by a green house in the picture below, is at the point with coordinates $(2.3842\dots, 0.4151\dots)$.

For instance, it is possible for you to meet Flavio and Francesco at the point depicted below, so that the sum of the lengths travelled by the three attendees is at most (and in fact equal to) $r = 5.0686\dots$.

예제 입력 2

-1 0
0 0
1 0

예제 출력 2

2.0000000000

Explanation of sample 2.

Any point on the segment $\{(x, 0) : -1 ≤ x ≤ 1\}$ is an optimal place of residence.

출처

ICPC > Regionals > Europe > Southwestern European Regional Contest > SWERC 2021-2022 H번

  • 문제를 만든 사람: Gerard Orriols