結果

問題 No.618 labo-index
ユーザー parukiparuki
提出日時 2018-01-02 00:45:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 240 ms / 6,000 ms
コード長 2,401 bytes
コンパイル時間 1,664 ms
コンパイル使用メモリ 174,752 KB
実行使用メモリ 6,164 KB
最終ジャッジ日時 2023-08-24 15:52:54
合計ジャッジ時間 7,756 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 4 ms
4,380 KB
testcase_05 AC 4 ms
4,384 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 3 ms
4,376 KB
testcase_10 AC 3 ms
4,380 KB
testcase_11 AC 3 ms
4,380 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 4 ms
4,376 KB
testcase_14 AC 2 ms
4,380 KB
testcase_15 AC 3 ms
4,380 KB
testcase_16 AC 4 ms
4,380 KB
testcase_17 AC 3 ms
4,384 KB
testcase_18 AC 6 ms
4,380 KB
testcase_19 AC 211 ms
4,944 KB
testcase_20 AC 215 ms
5,040 KB
testcase_21 AC 213 ms
5,044 KB
testcase_22 AC 217 ms
4,980 KB
testcase_23 AC 209 ms
4,924 KB
testcase_24 AC 211 ms
5,112 KB
testcase_25 AC 212 ms
4,944 KB
testcase_26 AC 211 ms
4,984 KB
testcase_27 AC 214 ms
4,964 KB
testcase_28 AC 209 ms
4,988 KB
testcase_29 AC 213 ms
4,976 KB
testcase_30 AC 214 ms
4,976 KB
testcase_31 AC 216 ms
5,060 KB
testcase_32 AC 216 ms
4,876 KB
testcase_33 AC 214 ms
4,988 KB
testcase_34 AC 240 ms
6,164 KB
testcase_35 AC 235 ms
6,080 KB
testcase_36 AC 164 ms
5,016 KB
testcase_37 AC 210 ms
4,948 KB
testcase_38 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i))
#define rep(i,j) FOR(i,0,j)
#define each(x,y) for(auto &(x):(y))
#define mp make_pair
#define mt make_tuple
#define all(x) (x).begin(),(x).end()
#define debug(x) cout<<#x<<": "<<(x)<<endl
#define smax(x,y) (x)=max((x),(y))
#define smin(x,y) (x)=min((x),(y))
#define MEM(x,y) memset((x),(y),sizeof (x))
#define sz(x) (int)(x).size()
#define pb push_back
typedef long long ll;
typedef pair<int, int> pii;
typedef vector<int> vi;
typedef vector<ll> vll;

template<class Val>
struct BinaryIndexedTree {
    int n;
    vector<Val> t;
    BinaryIndexedTree() {}
    BinaryIndexedTree(int _n) :n(_n + 1), t(_n + 1) {}
    void add(int k, Val val) {
        k++;
        while (k < n) {
            t[k] += val;
            k += (k&-k);
        }
    }
    void set(int k, Val val) {
        add(k, -sum(k, k + 1));
        add(k, val);
    }
    Val sum(int k) {
        Val r = 0;
        while (k > 0) {
            r += t[k];
            k -= (k&-k);
        }
        return r;
    }
    Val sum(int l, int r) {
        return sum(r) - sum(l);
    }
};
typedef BinaryIndexedTree<int> BIT;

ll A = 0, B = 0;
int Q, T[100005], X[100005], idx[100005];
vll men, pw;

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

    cin >> Q;
    rep(i, Q) {
        cin >> T[i] >> X[i];
        if (T[i] == 1) {
            men.push_back(X[i] - A);
            idx[i] = sz(men) - 1;
        }
        if (T[i] == 3)A += X[i];
    }

    pw = men;
    sort(all(pw));
    pw.erase(unique(all(pw)), pw.end());
    int P = sz(pw);

    BIT bit(P);

    rep(i, Q) {
        int t = T[i], x = X[i];
        if (t == 1) {
            int k = lower_bound(all(pw), men[idx[i]]) - pw.begin();
            bit.add(k, 1);
        } else if (t == 2) {
            int k = lower_bound(all(pw), men[x - 1]) - pw.begin();
            bit.add(k, -1);
        } else {
            B += x;
        }

        int l = 0, r = Q + 1;
        while (r - l > 1) {
            int m = (l + r) / 2;
            auto it = lower_bound(all(pw), m - B);
            if (it == pw.end()) {
                r = m;
            } else {
                int k = it - pw.begin();
                auto ok = bit.sum(k, P) >= m;
                if (ok)l = m;
                else r = m;
            }
        }
        cout << l << endl;
    }
}
0