結果

問題 No.2220 Range Insert & Point Mex
ユーザー gyouzasushigyouzasushi
提出日時 2023-02-17 22:03:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 800 ms / 2,000 ms
コード長 5,694 bytes
コンパイル時間 2,703 ms
コンパイル使用メモリ 231,012 KB
実行使用メモリ 42,448 KB
最終ジャッジ日時 2023-09-28 18:04:40
合計ジャッジ時間 14,334 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 2 ms
4,376 KB
testcase_13 AC 494 ms
36,168 KB
testcase_14 AC 475 ms
36,168 KB
testcase_15 AC 472 ms
36,208 KB
testcase_16 AC 473 ms
36,132 KB
testcase_17 AC 470 ms
36,176 KB
testcase_18 AC 472 ms
36,168 KB
testcase_19 AC 484 ms
36,396 KB
testcase_20 AC 790 ms
42,448 KB
testcase_21 AC 800 ms
42,400 KB
testcase_22 AC 792 ms
42,408 KB
testcase_23 AC 280 ms
20,404 KB
testcase_24 AC 255 ms
20,360 KB
testcase_25 AC 189 ms
16,772 KB
testcase_26 AC 242 ms
20,912 KB
testcase_27 AC 163 ms
10,292 KB
testcase_28 AC 80 ms
14,264 KB
testcase_29 AC 89 ms
14,364 KB
testcase_30 AC 89 ms
14,276 KB
testcase_31 AC 168 ms
16,216 KB
testcase_32 AC 138 ms
15,880 KB
testcase_33 AC 144 ms
15,136 KB
testcase_34 AC 380 ms
25,428 KB
testcase_35 AC 414 ms
24,792 KB
testcase_36 AC 271 ms
19,412 KB
testcase_37 AC 312 ms
18,960 KB
testcase_38 AC 271 ms
27,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define rrep(i, n) for (int i = (int)(n - 1); i >= 0; i--)
#define all(x) (x).begin(), (x).end()
#define sz(x) int(x.size())
using namespace std;
using ll = long long;
const int INF = 1e9;
const ll LINF = 1e18;
template <class T>
void get_unique(vector<T>& x) {
    x.erase(unique(x.begin(), x.end()), x.end());
}
template <class T>
bool chmax(T& a, const T& b) {
    if (a < b) {
        a = b;
        return 1;
    }
    return 0;
}
template <class T>
bool chmin(T& a, const T& b) {
    if (b < a) {
        a = b;
        return 1;
    }
    return 0;
}
template <class T>
vector<T> make_vec(size_t a) {
    return vector<T>(a);
}
template <class T, class... Ts>
auto make_vec(size_t a, Ts... ts) {
    return vector<decltype(make_vec<T>(ts...))>(a, make_vec<T>(ts...));
}
template <typename T>
istream& operator>>(istream& is, vector<T>& v) {
    for (int i = 0; i < int(v.size()); i++) {
        is >> v[i];
    }
    return is;
}
template <typename T>
ostream& operator<<(ostream& os, const vector<T>& v) {
    for (int i = 0; i < int(v.size()); i++) {
        os << v[i];
        if (i < sz(v) - 1) os << ' ';
    }
    return os;
}
// https://mugen1337.github.io/procon/DataStructure/RangeSet.cpp
// 閉区間の範囲を管理
template <typename T>
struct RangeSet {
    set<pair<T, T>> st;
    T TINF;

    RangeSet() {
        TINF = numeric_limits<T>::max() / 2;
        st.emplace(TINF, TINF);
        st.emplace(-TINF, -TINF);
    }
    // [l,r] covered?
    bool covered(T l, T r) {
        assert(l <= r);
        auto ite = prev(st.lower_bound({l + 1, l + 1}));
        return ite->first <= l and r <= ite->second;
    }
    bool covered(T x) {
        return covered(x, x);
    }
    // [l, r]がカバーされているなら,その区間を返す.
    // されていないなら[-TINF,-TINF]を返す
    pair<T, T> covered_by(T l, T r) {
        assert(l <= r);
        auto ite = prev(st.lower_bound({l + 1, l + 1}));
        if (ite->first <= l and r <= ite->second) return *ite;
        return make_pair(-TINF, -TINF);
    }
    pair<T, T> covered_by(T x) {
        return covered_by(x, x);
    }
    // insert[l,r], 増加量を返す
    T insert(T l, T r) {
        assert(l <= r);
        auto ite = prev(st.lower_bound({l + 1, l + 1}));
        if (ite->first <= l and r <= ite->second) return T(0);
        T sum_erased = T(0);
        if (ite->first <= l and l <= ite->second + 1) {
            l = ite->first;
            sum_erased += ite->second - ite->first + 1;
            ite = st.erase(ite);
        } else
            ite = next(ite);
        while (r > ite->second) {
            sum_erased += ite->second - ite->first + 1;
            ite = st.erase(ite);
        }
        if (ite->first - 1 <= r and r <= ite->second) {
            sum_erased += ite->second - ite->first + 1;
            r = ite->second;
            st.erase(ite);
        }
        st.emplace(l, r);
        return r - l + 1 - sum_erased;
    }
    T insert(T x) {
        return insert(x, x);
    }
    // erase [l,r], 減少量を返す
    T erase(T l, T r) {
        assert(l <= r);
        auto ite = prev(st.lower_bound({l + 1, l + 1}));
        if (ite->first <= l and r <= ite->second) {
            // 完全に1つの区間に包含されている
            if (ite->first < l) st.emplace(ite->first, l - 1);
            if (r < ite->second) st.emplace(r + 1, ite->second);
            st.erase(ite);
            return r - l + 1;
        }

        T ret = T(0);
        if (ite->first <= l and l <= ite->second) {
            ret += ite->second - l + 1;  // 消えた
            if (ite->first < l) st.emplace(ite->first, l - 1);
            ite = st.erase(ite);  // 次へ
        } else
            ite = next(ite);
        while (ite->second <= r) {
            ret += ite->second - ite->first + 1;
            ite = st.erase(ite);
        }
        // 右端が区間の間にあるか
        if (ite->first <= r and r <= ite->second) {
            ret += r - ite->first + 1;
            if (r < ite->second) st.emplace(r + 1, ite->second);
            st.erase(ite);
        }
        return ret;
    }
    T erase(T x) {
        return erase(x, x);
    }
    // number of range
    int size() {
        return (int)st.size() - 2;
    }
    // mex [x,~)
    T mex(T x = 0) {
        auto ite = prev(st.lower_bound({x + 1, x + 1}));
        if (ite->first <= x and x <= ite->second)
            return ite->second + 1;
        else
            return x;
    }
    void output() {
        cout << "RangeSet : ";
        for (auto& p : st) {
            if (p.first == -TINF or p.second == TINF) continue;
            cout << "[" << p.first << ", " << p.second << "] ";
        }
        cout << "\n";
    }
};
int main() {
    int n;
    cin >> n;
    map<int, vector<pair<int, int>>> ev;
    rep(i, n) {
        int l, r, a;
        cin >> l >> r >> a;
        ev[l].emplace_back(0, a);
        ev[r + 1].emplace_back(1, a);
    }
    int q;
    cin >> q;
    rep(i, q) {
        int x;
        cin >> x;
        ev[x].emplace_back(2, -1);
    }

    map<int, int> cnt;
    RangeSet<int> st;
    for (auto [x, v] : ev) {
        sort(all(v));
        for (auto [t, a] : v) {
            if (t == 0) {
                if (cnt[a] == 0) {
                    st.insert(a);
                }
                cnt[a]++;
            }
            if (t == 1) {
                cnt[a]--;
                if (cnt[a] == 0) {
                    st.erase(a);
                }
            }
            if (t == 2) {
                cout << st.mex(0) << '\n';
            }
        }
    }
}
0