Goat Rope
문제
You have a fence post located at the point (x, y) in the plane, to which a goat is tethered by a rope. You also have a house, which you model as an axis-aligned rectangle with diagonally opposite corners at the points (x1, y1) and (x2, y2). You want to pick a length of rope that guarantees the goat cannot reach the house. Determine the minimum distance from the fence post to the house, so that you can make sure to use a shorter rope.
입력
The input consists of a single line containing six space-separated integers x, y, x1, y1, x2, and y2, each in the range [−999, 999].
It is guaranteed that x1 < x2 and y1 < y2, and that (x, y) is strictly outside the axis-aligned rectangle with corners at (x1, y1) and (x2, y2).
출력
Print the minimum distance from the goat’s post to the house, with a relative or absolute error no more than 0.001.
예제
예제 1
7 3 0 0 5 4
2.0
예제 2
6 0 0 2 7 6
2.0
예제 3
3 -4 -3 -1 -1 2
5.0
예제 4
7 4 0 0 5 4
2.000
예제 5
4 8 7 8 9 9
3.000