eolymp
bolt
Try our new interface for solving problems
Problems

Mowing Mischief

Mowing Mischief

Bessie's younger cousins, Ella and Bella, are visiting the farm. Unfortunately, they have been causing nothing but mischief since they arrived.

In their latest scheme, they have decided to mow as much grass as they can. The farm's prime grassland is in the shape of large t × t square. The bottom-left corner is (0, 0), and the top-right corner is (t, t). The square therefore contains (t + 1 ) * (t + 1 ) lattice points (points with integer coordinates).

Ella and Bella plan to both start at (0, 0) and run at unit speed to (t, t) while each holding one end of a very sharp and very stretchy wire. Grass in any area that is swept by this wire will be cut. Ella and Bella may take different paths, but each path consists of only upward and rightward steps, moving from lattice point to lattice point.

Bessie is rather concerned that too much grass will be cut, so she invents a clever plan to constrain the paths Ella and Bella take. There are n yummy flowers scattered throughout the grassland, each on a distinct lattice point. Bessie will pick a set of S flowers that will be required for both Ella and Bella to visit (so Ella's path must visit all the flowers in S, and so must Bella's path). In order to add as many waypoints to these paths as possible, Bessie will choose S to be as large as possible among subsets of flowers that can be visited by a cow moving upward and rightward from (0, 0) to (t, t).

Ella and Bella will try to maximize the amount of grass they cut, subject to the restriction of visiting flowers in S. Please help Bessie choose S so that the amount of grass cut is as small as possible.

Input

The first line contains n (1n2 * 105) and t (1t106). Each of the next n lines contains the integer coordinates (xi, yi) of a flower. It is guaranteed that 1xi, yit1 for all i, and no two flowers lie on the same horizontal or vertical line.

Output

Print a single integer, giving the minimum possible amount of cut grass.

Example

In this example, it is optimal for Bessie to pick the flowers at (10, 3) and (13, 11). Then in the worst case, Ella and Bella will cut three rectangles of grass with total area 117.

Time limit 1 second
Memory limit 128 MiB
Input example #1
5 20
19 1
2 6
9 15
10 3
13 11
Output example #1
117
Source 2019 USACO February, Platinum