結果

問題 No.618 labo-index
ユーザー Kutimoti_TKutimoti_T
提出日時 2018-06-24 10:21:55
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 2,732 bytes
コンパイル時間 2,112 ms
コンパイル使用メモリ 166,076 KB
実行使用メモリ 9,384 KB
最終ジャッジ日時 2023-09-13 13:30:21
合計ジャッジ時間 8,353 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 WA -
testcase_04 WA -
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 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 232 ms
9,360 KB
testcase_35 AC 223 ms
9,384 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using i64 = long long;
#define rep(i,s,e) for(int (i) = (s);(i) <= (e);(i)++)

/* include file*/
#include <functional>
#include <vector>
using namespace std;
int Q;
vector<i64> T,X;
vector<i64> Xs;

template <class Monoid>
struct Segment {
  using Func = function<Monoid(Monoid, Monoid)>;

  vector<Monoid> node;
  Monoid ide;
  int n = 1;

  Func bin_f;
  Func update_f;

  Segment(const vector<Monoid>& init, Monoid ide_, Func f_, Func u_f)
      : bin_f(f_), ide(ide_), update_f(u_f) {
    int sz = init.size();
    while (n < sz) n *= 2;
    node.assign(n * 2 - 1, ide);
    for (int i = 0; i < sz; i++) node[i + n - 1] = init[i];
    for (int i = n - 2; i >= 0; i--)
      node[i] = bin_f(node[i * 2 + 1], node[i * 2 + 2]);
  }

  void update(int i, Monoid x) {
    i += n - 1;
    node[i] = update_f(node[i], x);
    while (i) {
      i = (i - 1) / 2;
      node[i] = bin_f(node[i * 2 + 1], node[i * 2 + 2]);
    }
  }

  Monoid get_inter(int a, int b, int k = 0, int l = 0, int r = -1) {
    if (r < 0) r = n;
    if (a <= l && r <= b) return node[k];
    if (r <= a || b <= l) return ide;

    Monoid lm = get_inter(a, b, k * 2 + 1, l, (l + r) / 2);
    Monoid rm = get_inter(a, b, k * 2 + 2, (l + r) / 2, r);
    return bin_f(lm, rm);
  }

  i64 lower_bound(i64 BASE,i64 sum = 0,int k = 0,int l = 0,int r = -1){
    if(r < 0) r = n;

    if(l + 1 == r){
      i64 L = max(Xs[l] + BASE,0LL);
      if(L <= node[k] + sum){
        return max(L,sum);
      }
      else{
        return sum;
      }
    }

    if(max(0LL,Xs[(l + r) / 2]) + BASE <= node[k * 2 + 2] + sum){
      return lower_bound(BASE,sum,k * 2 + 2,(l + r) / 2 ,r);
    }
    else{
      return lower_bound(BASE,sum + node[k * 2 + 2],k * 2 + 1,l,(l + r) / 2);
    }
  }
};

// http://judge.u-aizu.ac.jp/onlinejudge/review.jsp?rid=2730414#1
// http://judge.u-aizu.ac.jp/onlinejudge/review.jsp?rid=2730425#1


int main(){
  cin >> Q;
  T.resize(Q);
  X.resize(Q);
  i64 SUM = 0;
  rep(i,0,Q - 1){
    cin >> T[i] >> X[i];
    if(T[i] == 3){
      SUM += X[i];
    }
    if(T[i] == 1)
      Xs.push_back(X[i] - SUM);
  }
  sort(Xs.begin(),Xs.end());
  Xs.erase(unique(Xs.begin(), Xs.end()),Xs.end());
  rep(i,0,Q - 1){
    if(T[i] == 1)
      X[i] = lower_bound(Xs.begin(), Xs.end(), X[i]) - Xs.begin();
  }

  vector<i64> R;

  Segment<i64> seg(vector<i64>(Xs.size(),0),0,[](i64 a,i64 b){
    return a + b;
  },[](i64 a,i64 b){
    return a + b;
  });
  i64 BASE = 0;
  rep(i,0,Q - 1){
    if(T[i] == 1){
      seg.update(X[i], 1);
      R.push_back(X[i]);
    }
    if(T[i] == 2){
      seg.update(R[X[i] - 1],-1);
    }
    if(T[i] == 3){
      BASE += X[i];
    }
    cout << seg.lower_bound(BASE) <<endl;
  }
}
0