#Lutece0827. The Moving Points

The Moving Points

Migrated from Lutece 827 The Moving Points

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

There are NN points in total. Every point moves in certain direction and certain speed. We want to know at what time that the largest distance between any two points would be minimum. And also, we require you to calculate that minimum distance. We guarantee that no two points will move in exactly same speed and direction.

Input

The first line has a number TT (T10T\leq 10) , indicating the number of test cases.

For each test case, first line has a single number NN (N300N\leq 300), which is the number of points.

For next NN lines, each come with four integers XiX_i, YiY_i, VXiVX_i and VYiVY_i (106Xi-10^6 \leq X_i, Yi106Y_i \leq 10^6, 102VXi-10^2 \leq VX_i, VYi102VY_i \leq 10^2), (XiX_i, YiY_i) is the position of the ithi^{th} point, and (VXiVX_i, VYiVY_i) is its speed with direction. That is to say, after 11 second, this point will move to (Xi+VXiX_i + VX_i, Yi+VYiY_i + VY_i).

Output

For test case XX, output Case #X: first, then output two numbers, rounded to 0.010.01, as the answer of time and distance.

Samples

2
2
0 0 1 0
2 0 -1 0
2
0 0 1 0
2 1 -1 0
Case #1: 1.00 0.00
Case #2: 1.00 1.00

Resources

2013 ACM-ICPC China Chengdu Provincial Programming Contest