Submission #528464

# Submission time Handle Problem Language Result Execution time Memory
528464 2022-02-20T10:38:02 Z Slavita Osumnjičeni (COCI21_osumnjiceni) C++14
0 / 110
2 ms 484 KB
#include <bits/stdc++.h>
//#include <ext/pb_ds/assoc_container.hpp>
//#include <ext/pb_ds/tree_policy.hpp>
#define ve vector<int>
#define pb push_back
#define mp make_pair
#define fi first
#define se second
#define pi pair<int,int>
#define all(v) v.begin(),v.end()
#define si(v) (int)v.size()
#define en '\n'
#define ordered_set tree<int, null_type,less<int>, rb_tree_tag,tree_order_statistics_node_update>
#define ordered_muiltiset tree<int, null_type,less_equal<>, rb_tree_tag,tree_order_statistics_node_update>
//#define int long long
using namespace std;
//using namespace __gnu_pbds;
typedef long long ll;
typedef unsigned long long ull;

const int N = 1e3 + 228;
const int big = 1e9 + 228;
//ordered_set os; // os.order_of_key(4), (*os.find_by_order(5))
int n, m, q, ans;
long double l[N], r[N];

//#undef int
int main(){
    //#define int long long
    iostream::sync_with_stdio(false); cin.tie(0); ios_base::sync_with_stdio(false); cout.tie(0);
    //freopen("input.txt","r",stdin);
    //freopen("output.txt","w",stdout);
    cin >> n;
    for (int i = 1; i <= n; i++){
        cin >> l[i] >> r[i];
    }
    cin >> q;

    int kol = 1;
    set<long double> le, re;
    for (int i = 1; i <= n; i++){
        if (le.empty()){
            le.insert(l[i]);
            re.insert(r[i]);
            continue;
        }
        auto ub = upper_bound(all(le), l[i]);
        auto lb = lower_bound(all(re), r[i]);

        long double left = (*ub);
        long double right = (*lb);

        if (ub == le.end()){
            left = -big;
        }

        if (lb == re.end()){
            right = big;
        }

        if (l[i] > left && r[i] < right){
            le.insert(l[i]);
            re.insert(r[i]);
            continue;
        }else{
            kol++;
            le.clear();
            re.clear();
        }
    }
    if (q == 1){
        cout << kol;
    }else cout << 0;
    /*if (q == 3){
        if (n == 3){
            cout << "1\n1\n1";
        } else if (n == 5){
            cout << "3\n1\n3";
        }
    }*/
    return 0;
}
/*
*/
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 460 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 460 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 460 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 2 ms 484 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 460 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -