Hide

Problem B
Line Segment Distance

Input

The first line of input contains an integer n (n10000) giving the number of test cases. Then follow n lines each containing 8 integers x1 y1 x2 y2 x3 y3 x4 y4, indicating a line segment from (x1,y1) to (x2,y2), and a line segment from (x3,y3) to (x4,y4). Coordinates have absolute value at most 10000.

Output

For each test case, output the distance between the two line segments with 2 decimals of precision.

Sample Input 1 Sample Output 1
5
-10 0 10 0 0 -10 0 10
-10 0 10 0 -5 0 5 0
1 1 1 1 1 1 2 1
1 1 1 1 2 1 2 1
1871 5789 216 -517 189 -1518 3851 1895
0.00
0.00
0.00
1.00
713.86
Hide

Please log in to submit a solution to this problem

Log in