You are participating in a competition that involves crossing Egypt from west to east along a straight line segment. Initially you are located at the westmost point of the segment. It is a rule of the competition that you must always move along the segment, and always eastward.
There are teleporters on the segment. A teleporter has two endpoints. Whenever you reach one of the
endpoints, the teleporter immediately teleports you to the other endpoint. (Note that, depending on
which endpoint of the teleporter you reach, teleportation can transport you either eastward or
westward of your current position.) After being teleported, you must continue to move eastward along
the segment; you can never avoid a teleporter endpoint that is on your way. There will never be two
teleporter endpoints at the same position. Endpoints will be strictly between the start and the end of the
segment.
Every time you get teleported, you earn point. The objective of the competition is to earn as many
points as possible. In order to maximize the points you earn, you are allowed to add up to
new
teleporters to the segment before you start your journey. You also earn points for using the new
teleporters.
You can set the endpoints of the new teleporters wherever you want (even at non‐integer coordinates) as long as they do not occupy a position already occupied by another endpoint. That is, the positions of the endpoints of all teleporters must be unique. Also, endpoints of new teleporters must lie strictly between the start and the end of the segment.
Note that it is guaranteed that no matter how you add the teleporters, you can always reach the end of the segment.
Task
Write a program that, given the position of the endpoints of the teleporters, and the number
of new
teleporters that you can add, computes the maximum number of points you can earn.
Constraints
, the number of teleporters initially on the segment.
, the maximum number of new teleporters you can add.
, the distances from the beginning of the segment to the western and eastern endpoints of teleporter
.
Input Specification
Your program must read from the standard input the following data:
- Line
contains the integer
, the number of teleporters initially on the segment.
- Line
contains the integer
, the maximum number of new teleporters that you can add.
- Each of the next
lines describes one teleporter. The
of these lines describes the
teleporter. Each line consists of
integers:
and
separated by a space. They represent respectively the distances from the beginning of the segment to the western and eastern endpoints of the teleporter.
No two endpoints of the given teleporters share the same position. The segment that you will be traveling on starts at position and ends at position
.
Output Specification
Your program must write to the standard output a single line containing one integer, the maximum number of points you can earn.
Subtasks
- (
points)
and
.
- (
points) No additional constraints.
Sample Input 1
3
1
10 11
1 4
2 3
Sample Output 1
6
Explanation Of Sample 1

0.5
and at 1.5
.After adding the new teleporter as shown in the figure, your travel would be the following:
- You start at position
0
, moving eastward. - You reach the endpoint at position
0.5
and get teleported to position1.5
(you earnpoint).
- You continue to move east and reach the endpoint at position
2
; you get teleported to position3
(you havepoints).
- You reach the endpoint at position
4
, and get teleported to1
(you havepoints).
- You reach the endpoint at
1.5
, and get teleported to0.5
(you havepoints).
- You reach the endpoint at
1
, and get teleported to4
(you havepoints).
- You reach the endpoint at
10
, and get teleported to11
(you havepoints).
- You continue until you reach the end of the segment finishing with a total score of
points.
Sample Input 2
3
3
5 7
6 10
1999999 2000000
Sample Output 2
12
Comments