Hide

Problem M
Space Elevator

After years of material science research, scientists have finally devised a material strong enough to support the long-conceived space elevator! This elevator is anchored to the Earth in geostationary orbit to support efficient vertical transportation through Earth’s gravity well.

Significant amounts of engineering, time (and funding!) have been poured into its construction, and the first shipments are now ready to launch! However, with all of the work that has been put in, the scientists overlooked one major factor — the number of incoming requests that they would receive!

In the first few minutes, requests came in from the National Space Agency to send water to the International Space Station (ISS), from the Intercollegiate Coalition for Planetary Comprehension (ICPC) to ship low-gravity probes assembled at the ISS, and from the Astronomy Department to launch a new high altitude satellite measuring solar flares, not to mention that the local weather station asked if a lost high-altitude weather balloon could be retrieved on the way back.

To simplify the process, it has been decided that incoming requests will be aggregated and processed on a weekly basis. With the engineering of the elevator, the time and energy loss depend almost entirely on the distances traveled, with factors like potential energy being almost negligible.

The scientists in charge have turned to the Computer Science departments at their local universities to create a program that will read in the requests for the week and find the minimum vertical distance that the elevator must travel to fulfill all of them.

Note that the elevator effectively has no capacity limit for how many packages it can hold at once since requests to move particularly large objects will be handled separately. Also, the elevator is able to stop where it is at once it has fulfilled all of the requests, so input will also include the starting location of the elevator based on where it stopped the previous week.

Input

The first line of input contains 2 integers, $N$ and $H_0$, the number of requests and the height the elevator is currently at, respectively ($1 \leq N \leq 10^5$).

The next $N$ lines each contains two integers, $u_i$ and $v_i$, indicating that there is a request to pickup something at height $u_i$ and drop it off at height $v_i$. Docking procedures require high precision, so all heights are given as millimeters above sea level. All heights satisfy $0 \le H_0, u_i, v_i \le 5 \cdot 10^{11}, u_i \neq v_i$.

Output

Output the minimum distance (in millimeters) that the elevator must travel to fulfill all of the requests.

Sample Input 1 Sample Output 1
1 40
30 60
40
Sample Input 2 Sample Output 2
4 60
45 95
55 5
50 10
0 50
155
Sample Input 3 Sample Output 3
4 80
100 60
10 20
85 95
55 10
120

Please log in to submit a solution to this problem

Log in