#Lutece0240. Dividing the Path

Dividing the Path

Migrated from Lutece 240 Dividing the Path

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Farmer John's cows have discovered that the clover growing along the ridge of the hill in his field is particularly good. To keep the clover watered, Farmer John is installing water sprinklers along the ridge of the hill.

To make installation easier, each sprinkler head must be installed along the ridge of the hill (which we can think of as a one-dimensional number line of length L(1L1,000,000)L (1 \leq L \leq 1,000,000); LL is even).

Each sprinkler waters the ground along the ridge for some distance in both directions. Each spray radius is an integer in the range AB(1AB1000)A \cdots B (1 \leq A \leq B \leq 1000). Farmer John needs to water the entire ridge in a manner that covers each location on the ridge by exactly one sprinkler head. Furthermore, FJ will not water past the end of the ridge in either direction.

Each of Farmer John's N(1N1000)N (1 \leq N \leq 1000) cows has a range of clover that she particularly likes (these ranges might overlap). The ranges are defined by a closed interval (S,E)(S,E). Each of the cow's preferred ranges must be watered by a single sprinkler, which might or might not spray beyond the given range.

Find the minimum number of sprinklers required to water the entire ridge without overlap.

Input

Line 11: Two space-separated integers: NN and LL

Line 22: Two space-separated integers: AA and BB

Lines 3N+23 \cdots N+2: Each line contains two integers, SS and E(0S<EL)E (0 \leq S < E \leq L) specifying the start end location respectively of a range preferred by some cow. Locations are given as distance from the start of the ridge and so are in the range 0L0 \cdots L.

Output

Line 11: The minimum number of sprinklers required. If it is not possible to design a sprinkler head configuration for Farmer John, output -1.

Samples

2 8
1 2
6 7
3 6
3

Note

INPUT DETAILS:

Two cows along a ridge of length 88. Sprinkler heads are available in integer spray radii in the range 121…2 (i.e., 11 or 22). One cow likes the range 363-6, and the other likes the range 676-7.

OUTPUT DETAILS:

Three sprinklers are required: one at 11 with spray distance 11, and one at 44 with spray distance 22, and one at 77 with spray distance 11. The second sprinkler waters all the clover of the range like by the second cow (36)(3-6). The last sprinkler waters all the clover of the range liked by the first cow (67)(6-7). Here's a diagram:

                 |-----c2----|-c1|       cows' preferred ranges

     |---1---|-------2-------|---3---|   sprinklers

     +---+---+---+---+---+---+---+---+

     0   1   2   3   4   5   6   7   8

The sprinklers are not considered to be overlapping at 22 and 6464

Resources

USACO 2004 December Gold