結果

問題 No.618 labo-index
ユーザー merom686merom686
提出日時 2017-12-19 22:01:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 54 ms / 6,000 ms
コード長 1,973 bytes
コンパイル時間 1,199 ms
コンパイル使用メモリ 83,448 KB
実行使用メモリ 6,392 KB
最終ジャッジ日時 2024-05-09 12:59:33
合計ジャッジ時間 4,469 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 48 ms
5,376 KB
testcase_20 AC 49 ms
5,376 KB
testcase_21 AC 49 ms
5,376 KB
testcase_22 AC 49 ms
5,376 KB
testcase_23 AC 48 ms
5,376 KB
testcase_24 AC 49 ms
5,376 KB
testcase_25 AC 49 ms
5,376 KB
testcase_26 AC 50 ms
5,376 KB
testcase_27 AC 51 ms
5,376 KB
testcase_28 AC 49 ms
5,376 KB
testcase_29 AC 48 ms
5,376 KB
testcase_30 AC 49 ms
5,376 KB
testcase_31 AC 49 ms
5,376 KB
testcase_32 AC 48 ms
5,376 KB
testcase_33 AC 48 ms
5,376 KB
testcase_34 AC 53 ms
6,392 KB
testcase_35 AC 54 ms
6,392 KB
testcase_36 AC 40 ms
5,376 KB
testcase_37 AC 40 ms
5,376 KB
testcase_38 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <cmath>
using namespace std;

struct BIT {
    BIT(int n) : b(n + 1), n(n) {}
    void add(int i, int v) {
        for (int k = i + 1; k <= n; k += k & -k) b[k] += v;
    }
    int sum(int k) {
        int s = 0;
        for (; k > 0; k -= k & -k) s += b[k];
        return s;
    }
    int lower_bound(int s) {
        if (s <= 0) return 0;
        int x = 0, w = 1;
        while (w << 1 <= n) w <<= 1;
        do {
            int k = x + w;
            if (k <= n && b[k] < s) {
                s -= b[k];
                x += w;
            }
        } while (w >>= 1);
        return x + 1;
    }
    vector<int> b;
    int n;
};

using I = int;
template <class F>
I lower_bound(I i0, I i1, F f) {
    while (i0 < i1) {
        I i = (i0 + i1) / 2;
        if (f(i)) i1 = i; else i0 = i + 1;
    }
    return i0;
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);

    int q;
    cin >> q;

    vector<int> t(q), x(q);
    for (int i = 0; i < q; i++) {
        cin >> t[i] >> x[i];
    }

    vector<pair<int64_t, int>> a;
    int64_t d = 0;
    for (int i = 0; i < q; i++) {
        if (t[i] == 1) a.push_back(pair<int64_t, int>(x[i] - d, i));
        if (t[i] == 2) x[i] = a[x[i] - 1].second;
        if (t[i] == 3) d += x[i];
    }
    int n = a.size();

    sort(a.begin(), a.end());

    vector<int> p(q, -1);
    for (int j = 0; j < n; j++) {
        p[a[j].second] = j;
    }

    BIT bt(n);
    d = 0;
    int m = 0;
    for (int i = 0; i < q; i++) {
        if (t[i] == 1) {
            bt.add(p[i], 1);
            m++;
        } else if (t[i] == 2) {
            bt.add(p[x[i]], -1);
            m--;
        } else {
            d += x[i];
        }
        I j = lower_bound(0, n, [&](I j) {
            return m - bt.sum(j) <= a[j].first + d;
        });
        cout << m - bt.sum(j) << '\n';
    }

    return 0;
}
0