結果

問題 No.649 ここでちょっとQK!
ユーザー oxyshoweroxyshower
提出日時 2019-06-01 13:17:04
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 371 ms / 3,000 ms
コード長 1,813 bytes
コンパイル時間 1,929 ms
コンパイル使用メモリ 175,088 KB
実行使用メモリ 23,584 KB
最終ジャッジ日時 2024-09-17 19:54:47
合計ジャッジ時間 8,834 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 283 ms
6,400 KB
testcase_04 AC 274 ms
23,584 KB
testcase_05 AC 271 ms
23,580 KB
testcase_06 AC 167 ms
9,456 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 176 ms
12,456 KB
testcase_13 AC 175 ms
12,452 KB
testcase_14 AC 171 ms
12,328 KB
testcase_15 AC 175 ms
12,460 KB
testcase_16 AC 171 ms
12,464 KB
testcase_17 AC 196 ms
13,572 KB
testcase_18 AC 212 ms
14,320 KB
testcase_19 AC 234 ms
15,184 KB
testcase_20 AC 247 ms
16,056 KB
testcase_21 AC 276 ms
17,164 KB
testcase_22 AC 291 ms
18,040 KB
testcase_23 AC 308 ms
19,040 KB
testcase_24 AC 327 ms
19,776 KB
testcase_25 AC 347 ms
20,772 KB
testcase_26 AC 371 ms
21,632 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 128 ms
10,028 KB
testcase_31 AC 123 ms
10,152 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int long long

#ifdef LOCAL_DEBUG
  #include "LOCAL_DEBUG.hpp"
#endif

template <class T>
struct BIT{
  int n;
  vector<T> bit; //[1,N]

  BIT(int _n){
    n = _n + 1;
    bit.resize(n,0);
  }

  T sum(int i){
    T sum = 0;
    while(i > 0){
      sum += bit[i];
      i -= i & -i;
    }
    return sum;
  }

  void add(int i,T x){
    while(i < n){
      bit[i] += x;
      i += i & -i;
    }
  }

  // 合計がw以上の最小の位置 O(log^2 n)
  int lower_bound(T x) {
    int left = -1, right = n;
    while(right - left > 1) {
      int mid = (left + right)/2;
      if(sum(mid) >= x) right = mid;
      else left = mid;
    }
    return right;
  }
  /*
  // a[0]+...+a[ret] >= x
  int lower_bound(T x){
    int ret = -1;
    int k = 1;
    while(2*k < n) k <<= 1;
    while(k > 0){
      if(ret+k < n && bit[ret+k] < x){
        x -= bit[ret+k];
        ret += k;
      }
      k >>= 1;
    }
    return ret+1;
  }
  */
};

template<class T>
vector<T> compress(vector<T> v){
  sort(v.begin(),v.end());
  v.erase(unique(v.begin(),v.end()),v.end());
  return v;
}

signed main(){

  int q,k; cin >> q >> k;
  vector<int> query(q),v(q),vs;
  for(int i = 0; i < q; i++){
    cin >> query[i];
    if(query[i] == 1) cin >> v[i],vs.push_back(v[i]);
  }
  vs = compress(vs);
  map<int,int> mp;
  for(int i = 0; i < vs.size(); i++){
    mp[vs[i]] = i+1;
  }

  BIT<int> bitval(vs.size());
  BIT<int> bitnum(vs.size());

  for(int i = 0; i < q; i++){
    if(query[i] == 1){
      bitval.add(mp[v[i]],v[i]);
      bitnum.add(mp[v[i]],1);
    }
    else {
      if(bitnum.sum(vs.size()) < k) cout << -1 << endl;
      else {
        int idx = bitnum.lower_bound(k);
        cout << vs[idx-1] << endl;
        bitnum.add(idx,-1);
      }
    }
  }

  return 0;
}
0