結果

問題 No.2292 Interval Union Find
ユーザー coindarwcoindarw
提出日時 2024-10-01 01:11:12
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 210 ms / 5,000 ms
コード長 4,256 bytes
コンパイル時間 3,407 ms
コンパイル使用メモリ 251,796 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-10-01 01:11:27
合計ジャッジ時間 14,249 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 67 ms
6,820 KB
testcase_05 AC 87 ms
6,820 KB
testcase_06 AC 64 ms
6,820 KB
testcase_07 AC 80 ms
6,816 KB
testcase_08 AC 91 ms
6,820 KB
testcase_09 AC 90 ms
6,820 KB
testcase_10 AC 84 ms
6,816 KB
testcase_11 AC 82 ms
6,820 KB
testcase_12 AC 91 ms
6,820 KB
testcase_13 AC 77 ms
6,820 KB
testcase_14 AC 79 ms
6,816 KB
testcase_15 AC 82 ms
6,824 KB
testcase_16 AC 80 ms
6,824 KB
testcase_17 AC 88 ms
6,820 KB
testcase_18 AC 150 ms
12,800 KB
testcase_19 AC 210 ms
12,800 KB
testcase_20 AC 201 ms
12,800 KB
testcase_21 AC 170 ms
9,088 KB
testcase_22 AC 164 ms
8,832 KB
testcase_23 AC 164 ms
8,832 KB
testcase_24 AC 170 ms
8,960 KB
testcase_25 AC 174 ms
8,832 KB
testcase_26 AC 171 ms
8,832 KB
testcase_27 AC 166 ms
8,832 KB
testcase_28 AC 175 ms
8,832 KB
testcase_29 AC 170 ms
8,832 KB
testcase_30 AC 171 ms
8,832 KB
testcase_31 AC 173 ms
8,960 KB
testcase_32 AC 168 ms
8,832 KB
testcase_33 AC 163 ms
8,832 KB
testcase_34 AC 181 ms
8,832 KB
testcase_35 AC 170 ms
8,832 KB
testcase_36 AC 171 ms
8,832 KB
testcase_37 AC 172 ms
8,832 KB
testcase_38 AC 159 ms
8,960 KB
testcase_39 AC 165 ms
8,832 KB
testcase_40 AC 166 ms
8,832 KB
testcase_41 AC 52 ms
6,820 KB
testcase_42 AC 52 ms
6,820 KB
testcase_43 AC 57 ms
6,816 KB
testcase_44 AC 61 ms
6,816 KB
testcase_45 AC 61 ms
6,820 KB
testcase_46 AC 63 ms
6,816 KB
testcase_47 AC 69 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

template <typename T>
struct Range {
    T l, r;
    Range(T l, T r) : l(l), r(r) {
        if (l > r) l = r = 0ll;
    }
    Range() : Range(0ll, 0ll) {}
    Range operator&(Range b) const {
        T nl = max(l, b.l), nr = min(r, b.r);
        if (nl < nr) return Range(nl, nr);
        else return Range();
    }
    Range operator|(Range b) const {
        if (max(l, b.l) > min(r, b.r)) return Range();
        return Range(min(l, b.l), max(r, b.r));
    }
    bool empty() const { return l == r; }
    bool contains(T x) const { return l <= x && x < r; }
    T count() const { return r - l; }
    bool operator<(const Range& b) const { return (l != b.l) ? l < b.l : r < b.r; }
};
template <typename T>
struct RangeSet {
    set<Range<T>> ranges;
    RangeSet() {}
    int64_t cnt = 0;

    void insert(Range<T> r) {
        if (r.empty()) return;
        auto it = ranges.lower_bound(r);
        if (it != ranges.end() && it->l == r.l && r.r <= it->r) return;
        if (it != ranges.begin()) {
            auto pit = prev(it);
            if (r.r <= pit->r) return;
            if (r.l <= pit->r) {
                r.l = pit->l;
                cnt -= pit->count();
                ranges.erase(pit);
            }
        }
        while (it != ranges.end() && r.r >= it->l) {
            r.r = max(r.r, it->r);
            cnt -= it->count();
            it = ranges.erase(it);
        }
        cnt += r.count();
        ranges.insert(r);
    }
    void erase(Range<T> r) {
        if (r.empty()) return;
        auto it = ranges.lower_bound(r);
        if (it != ranges.end() && it->l == r.l && r.r <= it->r) {
            Range<T> nl = Range(it->l, r.l);
            Range<T> nr = Range(r.r, it->r);
            cnt -= it->count();
            cnt += nl.count() + nr.count();
            ranges.erase(it);
            if (!nl.empty()) ranges.insert(nl);
            if (!nr.empty()) ranges.insert(nr);
            return;
        }
        if (it != ranges.begin()) {
            auto pit = prev(it);
            if (r.r <= pit->r) {
                Range<T> nl = Range(pit->l, r.l);
                Range<T> nr = Range(r.r, pit->r);
                cnt -= pit->count();
                cnt += nl.count() + nr.count();
                ranges.erase(pit);
                if (!nl.empty()) ranges.insert(nl);
                if (!nr.empty()) ranges.insert(nr);
                return;
            }
            if (r.l <= pit->r) {
                Range<T> nl = Range(pit->l, r.l);
                cnt -= pit->count();
                ranges.erase(pit);
                if (!nl.empty()) ranges.insert(nl);
            }
        }
        while (it != ranges.end() && r.r >= it->l) {
            if (it->r <= r.r) {
                cnt -= it->count();
                it = ranges.erase(it);
            } else {
                Range<T> nr = Range(r.r, it->r);
                cnt -= it->count();
                it = ranges.erase(it);
                if (!nr.empty()) ranges.insert(nr);
            }
        }
    }
    Range<T> get(T x) {
        auto it = ranges.lower_bound(Range<T>(x, numeric_limits<T>::max()));
        if (it != ranges.begin()) {
            auto pit = prev(it);
            if (pit->contains(x)) return *pit;
        }
        return Range<T>();
    }
};

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    int n, q;
    cin >> n >> q;

    RangeSet<int> rs;

    while (q--) {
        int t;
        cin >> t;
        if (t == 1) {
            int l, r;
            cin >> l >> r;
            l *= 2, r *= 2;
            rs.insert({l, r + 1});
        } else if (t == 2) {
            int l, r;
            cin >> l >> r;
            l *= 2, r *= 2;
            rs.erase({l + 1, r});
        } else if (t == 3) {
            int u, v;
            cin >> u >> v;
            u *= 2, v *= 2;
            if (u == v) {
                cout << 1 << "\n";
                continue;
            }
            auto r = rs.get(u);
            cout << r.contains(v) << "\n";
        } else {
            int v;
            cin >> v;
            v *= 2;
            auto r = rs.get(v);
            cout << max(1, (r.count() + 1) / 2) << "\n";
        }
    }
}
0