【链接】 我是链接,点我呀:)
【题意】
在这里输入题意
【题解】
维护最右端的端点就好。
【代码】
#include <bits/stdc++.h>
using namespace std;
int n,m,now = 0;
int main(){
#ifdef LOCAL_DEFINE
freopen("rush_in.txt", "r", stdin);
#endif
ios::sync_with_stdio(0),cin.tie(0);
cin >> n >> m;
for (int i = 1;i <= n;i++){
int x,y;
cin >> x >> y;
if (now >= x) now = max(now,y);
}
if ( now >=m){
cout <<"YES"<<endl;
}else{
cout <<"NO"<<endl;}
return 0;
}