Problem E
JezzBall

“JezzBall is a computer game in which red-and-white ’atoms’
bounce about a rectangular field of play. The player advances
to later levels (with correspondingly higher numbers of atoms
and lives) by containing the atoms in progressively smaller
spaces, until at least
The picture to the right is a screenshot from the original game, where the player has already covered some space (the black part). In this problem we will consider a slightly different, non-discrete, version of the game. That is, while the length unit is still pixels, you should treat them as non-discrete in the sense that all objects can be at non-integer coordinates and all movements are continuous.
The size of the playing field will be
The player can divide the playing field in two by shooting a
horizontal or vertical ray from (in this problem) a fixed point
on the playing field. The ray will then extend in both
directions simultaneously (up and down for vertical rays, or
left and right for horizontal rays) at a uniform speed (in this
problem always
If an atom touches the endpoint of an extending edge, this will not be counted as a hit. Also, if an atom hits the ray at the same instant it has finished extending, this will also not count as a hit. Write a program that determines the minimum time the player must wait before he can start extending a ray so that an atom will not hit it before the ray has been completed.
Input
Each test case starts with a line containing a single
integer
Output
For each test case, output the minimum time until the player
can extend either a horizontal or vertical ray without an atom
colliding with it while it is being drawn. If no such time is
found during the first
The input will be constructed so that if the first time
occurs within the first
The output time should be accurate to an absolute or
relative error of at most
Sample Input 1 | Sample Output 1 |
---|---|
3 700 420 360 290 170 44 900 150 -53 20 890 100 130 -100 4 10 10 1 1 192 144 513 385 192 144 1023 767 -192 -144 511 383 -192 -144 0 |
2.800943396 Never |