hiho week 223 register

Ended

Participants:148

Verdict:Accepted
Score:100 / 100
Submitted:2018-10-10 19:46:00

Lang:G++

Edit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include <bits/stdc++.h>
using namespace std;
int main(){
    int n, x, y;
    cin >> n >> x >> y;
    vector<pair<int, int>> invals;
    for(int i = 0; i < n; i++){
        int l, r;
        cin >> l >> r;
        invals.push_back(make_pair(l, r));
    }
    sort(invals.begin(), invals.end());
    int ans = 0, i = 0, last = INT_MIN;
    while(i < n && x > 0 && x < y){
        //cout << x << endl;
        if(invals[i].first <= x){
            if(invals[i].second >= x) last = max(last, invals[i].second);
            i++;
        }
        else{
            x = last+1;
            ans++;
        }
    }
    if(i == n) ans++;
    if(last < y) cout << -1 << endl;
    else cout << ans << endl;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX