CF1601D.Difficult Mountain

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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

Each alpinist can be described by two integers ss and aa , where ss is his skill of climbing mountains and aa is his neatness.

An alpinist of skill level ss is able to climb a mountain of difficulty pp only if psp \leq s . As an alpinist climbs a mountain, they affect the path and thus may change mountain difficulty. Specifically, if an alpinist of neatness aa climbs a mountain of difficulty pp the difficulty of this mountain becomes max(p,a)\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 nn and dd ( 1n5000001 \leq n \leq 500\,000 ; 0d1090 \leq d \leq 10^9 ) — the number of alpinists and the initial difficulty of the mountain.

Each of the next nn lines contains two integers sis_i and aia_i ( 0si,ai1090 \leq s_i, a_i \leq 10^9 ) that define the skill of climbing and the neatness of the ii -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.

输入输出样例

  • 输入#1

    3 2
    2 6
    3 5
    5 7

    输出#1

    2
  • 输入#2

    3 3
    2 4
    6 4
    4 6

    输出#2

    2
  • 输入#3

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

    输出#3

    3

说明/提示

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

In the second example, alpinist 11 is not able to climb because of the initial difficulty of the mountain, while alpinists 22 and 33 can go up in any order.

In the third example, the mountain can be climbed by alpinists 55 , 33 and 44 in this particular order. There is no other way to achieve optimal answer.

首页