Problem8550--CGL_2_D : Distance

8550: CGL_2_D : Distance

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB  Special Judge

Description

For given two segments $s_1$ and $s_2$,print the distance between them.
$s_1$ is formed by end points $p_0$ and $p_1$, and $s_2$ is formed by end points $p_2$ and $p_3$.

Input

The entire input looks like:
q(the number of queries) 
1st query 
2nd query 
...
qth query
Each query consists of integer coordinates of end points of s1 and s2 in the following format:
$x_{p_0}\ y_{p_0}\ x_{p_1}\ y_{p_1}\ x_{p_2}\ y_{p_2}\ x_{p_3}\ y_{p_3}$

Output

For each query, print the distance. 
The output values should be in a decimal fraction with an error less than 0.00000001.

Constraints

$1 ≤ q ≤ 1000$
$-10000 ≤ x_{p_i}, y_{p_i} ≤ 10000$
$p_0≠p_1$ and $p_2≠p_3$.

Sample 1 Input

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

Sample 1 Output

1.0000000000
1.4142135624
0.0000000000

HINT

相同题目:CGL_2_D

Source/Category