Jam
The most annoying thing in Moscow traffic jams is that drivers constantly try to suddenly change lanes in order to move faster. In this problem you'll have to find out whether this is a reasonable strategy or not.
We'll study a relatively simple mathematical model of a traffic jam. Assume that there's an n-lane road, lanes numbered from 1 to n, and i-th lane is moving with speed b[i]
+ a[i]
* sin(t + delta[i]
) at the moment t. It is always true that b[i]
> a[i]
, i.e., the speed of movement is always positive. You can change the lane you're in at any time, it takes c * |x - y| to change from x-th lane to y-th. We'll assume that you're not moving forward during that period.
Determine the time you need to travel the distance of d, and the method of achieving that time. You're starting at the moment 0 at lane 1, you may finish at any lane.
Input
The first line contains two integers n and d and a floating-point number c (1 ≤ n ≤ 5, 1 ≤ d ≤ 1000, 0.001 ≤ c ≤ 1000). The next n lines describe lanes, each containing two integers a[i]
and b[i]
and a floating-point number delta[i]
(0 ≤ a[i]
< b[i]
≤ 100, 0 ≤ delta[i]
< 2 * pi).
Output
On the first line print the minimal time required to travel the distance of d. On the second line print the number k of lane changes required to do that. k should not be more than 10^6
, it is guaranteed that there always exists an optimal strategy requiring not more than 10^6
lane changes. On the next k lines print the changes themselves, each line should contain the new lane number and the time when the change is started. The changes should be printed in chronological order. If there're many possible schedules, output any.
Output all the floating-point numbers with maximal precision possible. Your solution will be considered correct if verifying your schedule doesn't lead to discrepancies of more than 10^(-6)
(in checking the total distance traveled, in checking that lane changes are non-overlapping, etc), so it's better for you to output at least 10 - 12 digits after the decimal point in each floating-point number.