Problem D
Careful Ascent
That went well! As police sirens rang out around the palace, Mal Reynolds had already reached his lifting device outside of the city.
No spaceship can escape Planet Zarzos without permission
from the High Priest. However, Mal’s spaceship, Firefly, is in
geostationary orbit well above the controlled zone and his
small lifting device can avoid being recognised as an intruder
if its vertical velocity is exactly
There are still two problems. First, Mal will not be able to
control the vehicle from his space suit, so he must set up the
autopilot while on the ground. The vertical velocity must be
exactly
![\includegraphics[width=0.6\textwidth ]{sample1.pdf}](/problems/carefulascent/file/statement/en/img-0001.png)
Luckily, Mal recorded the positions of the shields and their influence on the autopilot during his descent. What he needs now is a program telling him the right horizontal velocity setting.
Input
The input consists of:
-
one line with two integers
, ( , and ), Firefly’s coordinates relatively to Mal’s current position (in kilometres). -
one line with an integer
( ), the number of shields. -
lines describing the shields, the th line containing three numbers:-
an integer
( ), the lower boundary of shield (in kilometres). -
an integer
( ), the upper boundary of shield (in kilometres). -
a real value
( ), the factor with which the horizontal velocity is multiplied during the traversal of shield .
It is guaranteed that shield ranges do not intersect, i.e., for every pair of shields
either or must hold.All real numbers will have at most
digits after the decimal point. -
Output
Output the horizontal velocity in km/min which Mal must
choose in order to reach Firefly. The output must be accurate
to an absolute or relative error of at most
Sample Input 1 | Sample Output 1 |
---|---|
100 140 1 40 90 0.2000000000 |
1.0 |
Sample Input 2 | Sample Output 2 |
---|---|
100 100 3 0 20 2.0000000000 50 100 0.1000000000 20 50 0.2000000000 |
1.96078431373 |