#F. Difficult Mountain

    远端评测题 2000ms 512MiB

Difficult Mountain

本题没有可用的提交语言。

该比赛已结束,您无法在比赛模式下递交该题目。您可以点击“在题库中打开”以普通模式查看和递交本题。

Description

A group of $n$ alpinists has just reached the foot of the mountain. The initial difficulty of climbing this mountain can be described as an integer $d$.

Each alpinist can be described by two integers $s$ and $a$, where $s$ is his skill of climbing mountains and $a$ is his neatness.

An alpinist of skill level $s$ is able to climb a mountain of difficulty $p$ only if $p \leq s$. As an alpinist climbs a mountain, they affect the path and thus may change mountain difficulty. Specifically, if an alpinist of neatness $a$ climbs a mountain of difficulty $p$ the difficulty of this mountain becomes $\max(p, a)$.

Alpinists will climb the mountain one by one. And before the start, they wonder, what is the maximum number of alpinists who will be able to climb the mountain if they choose the right order. As you are the only person in the group who does programming, you are to answer the question.

Note that after the order is chosen, each alpinist who can climb the mountain, must climb the mountain at that time.

The first line contains two integers $n$ and $d$ ($1 \leq n \leq 500\,000$; $0 \leq d \leq 10^9$) — the number of alpinists and the initial difficulty of the mountain.

Each of the next $n$ lines contains two integers $s_i$ and $a_i$ ($0 \leq s_i, a_i \leq 10^9$) that define the skill of climbing and the neatness of the $i$-th alpinist.

Print one integer equal to the maximum number of alpinists who can climb the mountain if they choose the right order to do so.

Input

The first line contains two integers $n$ and $d$ ($1 \leq n \leq 500\,000$; $0 \leq d \leq 10^9$) — the number of alpinists and the initial difficulty of the mountain.

Each of the next $n$ lines contains two integers $s_i$ and $a_i$ ($0 \leq s_i, a_i \leq 10^9$) that define the skill of climbing and the neatness of the $i$-th alpinist.

Output

Print one integer equal to the maximum number of alpinists who can climb the mountain if they choose the right order to do so.

Samples

3 2
2 6
3 5
5 7
2
3 3
2 4
6 4
4 6
2
5 0
1 5
4 8
2 7
7 6
3 2
3

Note

In the first example, alpinists $2$ and $3$ can climb the mountain if they go in this order. There is no other way to achieve the answer of $2$.

In the second example, alpinist $1$ is not able to climb because of the initial difficulty of the mountain, while alpinists $2$ and $3$ can go up in any order.

In the third example, the mountain can be climbed by alpinists $5$, $3$ and $4$ in this particular order. There is no other way to achieve optimal answer.

Codeforces Round #751 (Div. 2)

未认领
状态
已结束
题目
6
开始时间
2021-10-28 8:00
截止时间
2021-11-5 11:59
可延期
0 小时