eolymp
bolt
Try our new interface for solving problems
Problems

Hill Driving

Hill Driving

Time limit 1 second
Memory limit 64 MiB

You're driving your car in the local hills and returning to your home town. You'd like to get back as quickly as possible; however, you notice that you don't have much fuel left. You know the most efficient route to take. Some parts of this route go downhill, and some go uphill. The different parts have different lengths and slopes. How quickly can you reach home with the little fuel you have left?

We will assume a very simple model for the fuel consumption of your car. Fuel consumption (per unit distance travelled) will increase linearly with your driving speed v. However, there is an offset which depends on the slope s of the hill. For example, when going downhill along a particular road, you might be able to go at 10 km/h without expending any fuel; on the other hand, if you were travelling that same road uphill, you would expend fuel at the same rate as if you were driving 10 km/h faster along a flat road. More specifically, the car's fuel consumption c in liters per kilometer is given by

c = max(0, α v + β s)

where α is the standard fuel consumption rate on a flat road, v is your speed in km/h, s is the slope of the road, and β is a positive constant. Acceleration and deceleration do not cost fuel and can be done instantaneously.

Note that your car has a maximum (safe) speed which cannot be exceeded.

Input data

On the first line a positive integer: the number of test cases, at most 100. After that per test case:

  • One line with four floating point numbers α (0.1α100), β (0.1β100), vmax (10vmax200) and f (0f50): the standard (flat road) fuel consumption rate of your car, the slope factor, the maximum speed of your car in km/h, and the amount of fuel you have left in liters, respectively.

  • One line with an integer r (1r10 000): the number of road segments.

  • r lines with two floating point numbers x_i and y_i (1x_i1 000, -1 000y_i1 000) each: the horizontal distance and height change (both in meters) of the i-th road segment. Each road segment has constant slope.

Output data

Per test case:

  • One line with a floating point number: the fastest time in hours in which you can reach town. It is guaranteed that if it is possible to reach town at all, it will always be possible in less than 24 hours. If it is impossible to reach town, the line must contain "IMPOSSIBLE" instead.

Your output should have a relative or absolute error of at most 10^{-6}.

Examples

Input example #1
3 
10.0 1.0 150 0.0 
1 
100.0 -100.0 
10.0 100.0 150 1.0 
2 
100 0 
100 100 
0.5 0.1 100 10 
3 
1000 0 
100 10 
100 -10
Output example #1
1.414214
IMPOSSIBLE
0.072120
Source NWERC-2010