CF1601D.Difficult Mountain
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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≤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≤n≤500000 ; 0≤d≤109 ) — the number of alpinists and the initial difficulty of the mountain.
Each of the next n lines contains two integers si and ai ( 0≤si,ai≤109 ) 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.
输入输出样例
输入#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 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.