【Codeforces Round #453 (Div. 2) A】 Visiting a Friend

【链接】 我是链接,点我呀:)
【题意】

在这里输入题意

【题解】

维护最右端的端点就好。

【代码】

#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;
}
posted @ 2017-12-20 12:19  AWCXV  阅读(92)  评论(0编辑  收藏  举报