#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 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 () , indicating the number of test cases.
For each test case, first line has a single number (), which is the number of points.
For next lines, each come with four integers , , and (, , , ), (, ) is the position of the point, and (, ) is its speed with direction. That is to say, after second, this point will move to (, ).
Output
For test case , output Case #X:
first, then output two numbers, rounded to , 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