Problem E
Space Junk

For this problem, we will consider the simplified case in which both the spacecraft and the space junk can be modelled as spheres that are travelling in a straight line. Given the current locations of the two spheres as well as their velocities, when would they collide in the future, if ever?
Input
The first line of input contains a single positive integer
The absolute value of all integers are at most 100, and
You may assume that the two spheres do not touch each other initially.
Output
For each test case, output a line containing the time (in seconds) at which the spacecraft first collides with the space junk. If they never collide, print No collision instead. Answers within 0.01 of the correct result are acceptable.
Sample Input 1 | Sample Output 1 |
---|---|
3 10 3 -10 5 -9 3 -8 2 0 0 6 -4 3 -10 -7 5 0 3 -1 0 3 10 7 -6 6 -2 0 4 -4 -1 0 3 -1 -5 -6 2 1 8 6 4 0 -1 |
0.492 8.628 No collision |