結果

問題 No.2220 Range Insert & Point Mex
ユーザー t98slidert98slider
提出日時 2023-02-17 22:03:32
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 203 ms / 2,000 ms
コード長 4,571 bytes
コンパイル時間 1,905 ms
コンパイル使用メモリ 182,824 KB
実行使用メモリ 21,332 KB
最終ジャッジ日時 2023-09-28 18:04:17
合計ジャッジ時間 7,479 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
4,896 KB
testcase_01 AC 4 ms
4,900 KB
testcase_02 AC 3 ms
4,820 KB
testcase_03 AC 3 ms
4,820 KB
testcase_04 AC 3 ms
4,844 KB
testcase_05 AC 3 ms
4,816 KB
testcase_06 AC 4 ms
4,876 KB
testcase_07 AC 3 ms
4,820 KB
testcase_08 AC 4 ms
4,840 KB
testcase_09 AC 3 ms
4,840 KB
testcase_10 AC 3 ms
4,820 KB
testcase_11 AC 3 ms
4,972 KB
testcase_12 AC 3 ms
4,820 KB
testcase_13 AC 192 ms
21,304 KB
testcase_14 AC 201 ms
21,328 KB
testcase_15 AC 199 ms
21,332 KB
testcase_16 AC 197 ms
21,264 KB
testcase_17 AC 203 ms
21,196 KB
testcase_18 AC 200 ms
21,308 KB
testcase_19 AC 195 ms
21,176 KB
testcase_20 AC 126 ms
15,044 KB
testcase_21 AC 127 ms
15,084 KB
testcase_22 AC 127 ms
14,928 KB
testcase_23 AC 105 ms
13,992 KB
testcase_24 AC 79 ms
13,296 KB
testcase_25 AC 71 ms
12,668 KB
testcase_26 AC 76 ms
11,576 KB
testcase_27 AC 43 ms
8,064 KB
testcase_28 AC 32 ms
8,564 KB
testcase_29 AC 36 ms
8,604 KB
testcase_30 AC 36 ms
8,500 KB
testcase_31 AC 76 ms
11,740 KB
testcase_32 AC 72 ms
10,936 KB
testcase_33 AC 77 ms
11,836 KB
testcase_34 AC 125 ms
13,220 KB
testcase_35 AC 139 ms
14,044 KB
testcase_36 AC 108 ms
11,700 KB
testcase_37 AC 122 ms
12,540 KB
testcase_38 AC 110 ms
19,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

template <class S, S (*op)(S, S), S (*e)()> struct segtree {
    public:
    segtree() : segtree(0) {}
    segtree(int n) : segtree(std::vector<S>(n, e())) {}
    segtree(const std::vector<S>& v) : _n(int(v.size())) {
        log = ceil_pow2(_n);
        size = 1 << log;
        d = std::vector<S>(2 * size, e());
        for (int i = 0; i < _n; i++) d[size + i] = v[i];
        for (int i = size - 1; i >= 1; i--) {
            update(i);
        }
    }

    void set(int p, S x) {
        assert(0 <= p && p < _n);
        p += size;
        d[p] = x;
        for (int i = 1; i <= log; i++) update(p >> i);
    }

    S get(int p) {
        assert(0 <= p && p < _n);
        return d[p + size];
    }
    const S operator[](int p) const { return get(p); }
    S operator[](int p) { return get(p); }

    S prod(int l, int r) {
        assert(0 <= l && l <= r && r <= _n);
        S sml = e(), smr = e();
        l += size;
        r += size;

        while (l < r) {
            if (l & 1) sml = op(sml, d[l++]);
            if (r & 1) smr = op(d[--r], smr);
            l >>= 1;
            r >>= 1;
        }
        return op(sml, smr);
    }

    S all_prod() { return d[1]; }

    template <bool (*f)(S)> int max_right(int l) {
        return max_right(l, [](S x) { return f(x); });
    }
    template <class F> int max_right(int l, F f) {
        assert(0 <= l && l <= _n);
        assert(f(e()));
        if (l == _n) return _n;
        l += size;
        S sm = e();
        do {
            while (l % 2 == 0) l >>= 1;
            if (!f(op(sm, d[l]))) {
                while (l < size) {
                    l = (2 * l);
                    if (f(op(sm, d[l]))) {
                        sm = op(sm, d[l]);
                        l++;
                    }
                }
                return l - size;
            }
            sm = op(sm, d[l]);
            l++;
        } while ((l & -l) != l);
        return _n;
    }

    template <bool (*f)(S)> int min_left(int r) {
        return min_left(r, [](S x) { return f(x); });
    }
    template <class F> int min_left(int r, F f) {
        assert(0 <= r && r <= _n);
        assert(f(e()));
        if (r == 0) return 0;
        r += size;
        S sm = e();
        do {
            r--;
            while (r > 1 && (r % 2)) r >>= 1;
            if (!f(op(d[r], sm))) {
                while (r < size) {
                    r = (2 * r + 1);
                    if (f(op(d[r], sm))) {
                        sm = op(d[r], sm);
                        r--;
                    }
                }
                return r + 1 - size;
            }
            sm = op(d[r], sm);
        } while ((r & -r) != r);
        return 0;
    }

    private:
    int _n, size, log;
    std::vector<S> d;
    int ceil_pow2(int n) {
        int x = 0;
        while ((1U << x) < (unsigned int)(n)) x++;
        return x;
    }
    void update(int k) { d[k] = op(d[2 * k], d[2 * k + 1]); }
};

int op(int lhs, int rhs){
    return (lhs & rhs);
}

int e(){
    return 1;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n;
    cin >> n;
    vector<tuple<int,int,int>> a(n);
    vector<int> c, cnt(100005);
    for(int i = 0; i < n; i++){
        int l, r, v;
        cin >> l >> r >> v;
        c.push_back(l);
        c.push_back(r + 1);
        a[i] = make_tuple(l, r + 1, v);
    }
    int Q;
    cin >> Q;
    vector<int> x(Q);
    for(auto &&v: x){
        cin >> v;
        c.push_back(v);
    }
    sort(c.begin(), c.end());
    c.erase(unique(c.begin(), c.end()), c.end());
    int m = c.size();
    vector<vector<int>> tb(m);
    vector<int> ans(Q);
    auto get = [&](int v){
        return lower_bound(c.begin(), c.end(), v) - c.begin();
    };
    for(int i = 0; i < n; i++){
        int l, r, v;
        tie(l, r, v) = a[i];
        l = get(l), r = get(r);
        if(v <= 100000){
            tb[l].push_back(v + 1);
            tb[r].push_back(- (v + 1));
        }
    }

    segtree<int, op, e> seg(vector<int>(100005, 0));

    for(int i = 0, j = 0; i < m; i++){
        for(auto &&v:tb[i]){
            if(v < 0){
                v = -v - 1;
                cnt[v]--;
                if(cnt[v] == 0)seg.set(v, 0);
            }else{
                v = v - 1;
                cnt[v]++;
                seg.set(v, 1);
            }
        }
        if(j < Q && c[i] == x[j]){
            ans[j] = seg.max_right(0, [&](int v){return v == 1;});
            cout << ans[j++] << '\n';
        }
    }
}
0