結果

問題 No.2220 Range Insert & Point Mex
ユーザー prism17prism17
提出日時 2023-02-18 23:34:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,876 bytes
コンパイル時間 2,706 ms
コンパイル使用メモリ 183,292 KB
実行使用メモリ 117,184 KB
最終ジャッジ日時 2023-09-27 11:55:14
合計ジャッジ時間 9,992 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 39 ms
97,052 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 420 ms
117,156 KB
testcase_21 AC 428 ms
117,184 KB
testcase_22 AC 423 ms
117,048 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 58 ms
98,144 KB
testcase_30 AC 57 ms
98,248 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: 関数 ‘void solve()’ 内:
main.cpp:82:16: 警告: structured bindings only available with ‘-std=c++17’ or ‘-std=gnu++17’ [-Wc++17-extensions]
   82 |     for (auto &[l, r, x] : a) {
      |                ^

ソースコード

diff #

// Problem: No.2220 Range Insert & Point Mex
// Contest: yukicoder
// URL: https://yukicoder.me/problems/no/2220
// Memory Limit: 512 MB
// Time Limit: 2000 ms

#include <bits/stdc++.h>

#define fastio ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
#define dbg(x) cout << #x << " = " << (x) << "\n";
#define popcount(x) __builtin_popcountll((x))
#define all(v) (v).begin(), (v).end()
#define pb emplace_back
#define x first
#define y second

using namespace std;
typedef long long ll;
typedef pair<ll, ll> pll;

const int inf = 0x3f3f3f3f;
const int mod = 1e9 + 7;

struct BIT {
    int sz;
    vector<int> bit;
    int lowbit(int x) { return x & -x; }
    void add(int x, ll v) {
        for (int i = ++x; i <= sz; i += lowbit(i)) {
            bit[i] += v;
        }
    }
    ll ask(int x) {
        if (x < 0) return 0;
        ll ret = 0;
        for (int i = ++x; i >= 1; i -= lowbit(i)) {
            ret += bit[i];
        }
        return ret;
    }
    void build(int _n) {
        sz = _n;
        bit = vector<int>(sz + 10, 0);
    }
}bit;

const int N = 2e6 + 7;
int n, q;
int ans[N];
vector<int> in[N], out[N];
vector<int> v, vv;
int get(int x) {
    return lower_bound(all(v), x) - v.begin() + 1;
}
int g(int x) {
    return lower_bound(all(vv), x) - vv.begin();
}
void solve() {
    cin >> n;
    vector<array<int, 3>> a(n);
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < 3; j++) {
            cin >> a[i][j];
        }
        v.pb(a[i][0]);
        v.pb(a[i][0] - 1);
        v.pb(a[i][0] + 1);
        v.pb(a[i][1]);
        v.pb(a[i][1] - 1);
        v.pb(a[i][1] + 1);
    }
    cin >> q;
    vector<int> Q(q);
    for (int &i : Q) {
        cin >> i;
        v.pb(i);
    }
    v.pb(INT_MAX);
    sort(all(v));
    v.erase(unique(all(v)), v.end());
    map<int, int> cnt;
    for (auto &[l, r, x] : a) {
        int nl = get(l), nr = get(r + 1);
        in[nl].pb(x);
        out[nr].pb(x);
        vv.pb(x);
        vv.pb(x - 1);
        vv.pb(x + 1);
    }
    vv.pb(0);
    sort(all(vv));
    vv.erase(unique(all(vv)), vv.end());
    bit.build(vv.size() + 1);

    for (int i = 1; i <= v.size(); i++) {
        for (auto &it : in[i]) {
            if (++cnt[it] == 1) {
                bit.add(g(it), 1);
            }
        }
        for (auto &it : out[i]) {
            if (--cnt[it] == 0) {
                bit.add(g(it), -1);
            }
        }
        int l = 0, r = vv.size() + 1;
        while (l < r) {
            int mid = l + r + 1 >> 1;
            if (bit.ask(mid) == mid + 1) l = mid;
            else r = mid - 1;
        }
        if (bit.ask(l) == l + 1) ++l;
        ans[i] = l;
    }
    for (int &i : Q) {
        cout << ans[get(i)] << "\n";
    }
}

int main() {
    fastio;
//    freopen("input.txt", "r", stdin);
    int t = 1;
//    cin >> t;
    while (t--) {
        solve();
    }
    return 0;
}
0