結果

問題 No.649 ここでちょっとQK!
ユーザー yuto_okayamayuto_okayama
提出日時 2019-01-20 11:55:25
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 422 ms / 3,000 ms
コード長 1,602 bytes
コンパイル時間 1,436 ms
コンパイル使用メモリ 173,112 KB
実行使用メモリ 21,128 KB
最終ジャッジ日時 2024-07-21 20:19:53
合計ジャッジ時間 9,602 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 325 ms
6,940 KB
testcase_04 AC 275 ms
21,128 KB
testcase_05 AC 275 ms
21,128 KB
testcase_06 AC 187 ms
9,444 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 185 ms
11,424 KB
testcase_13 AC 185 ms
11,296 KB
testcase_14 AC 182 ms
11,296 KB
testcase_15 AC 192 ms
11,428 KB
testcase_16 AC 187 ms
11,336 KB
testcase_17 AC 202 ms
12,212 KB
testcase_18 AC 218 ms
12,876 KB
testcase_19 AC 248 ms
13,788 KB
testcase_20 AC 267 ms
14,708 KB
testcase_21 AC 290 ms
15,360 KB
testcase_22 AC 332 ms
16,156 KB
testcase_23 AC 349 ms
17,076 KB
testcase_24 AC 367 ms
17,856 KB
testcase_25 AC 389 ms
18,776 KB
testcase_26 AC 422 ms
19,564 KB
testcase_27 AC 3 ms
6,940 KB
testcase_28 AC 3 ms
6,940 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 131 ms
9,376 KB
testcase_31 AC 128 ms
9,380 KB
testcase_32 AC 2 ms
6,944 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define repi(i,a,b) for(int i=int(a);i<(int)(b);i++)
#define reps(i,n) for(int i=0;i<=(int)(n);i++)
#define all(x) (x).begin(),(x).end()
#define foreach(u,v) for(auto (u) : (v))
#define pb push_back
#define mp make_pair
#define mt make_tuple

typedef long long ll;
typedef pair<int, int> pii;
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef pair<ll, ll> pll;
typedef vector<ll> vl;

const int inf = 1e9;
const ll linf = 1e18;
const ll mod = 1e9 + 7;
const double eps = 1e-9;

const int MAXN = 200010;
int bit[MAXN+1];

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

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

int search(int x)
{
  int l = 0, r = MAXN;
  while(r-l > 1){
    int m = (l+r)/2;
    if(sum(m) < x){
      l = m; 
    }else{
      r = m;
    }
  }
  return r;
}

int main()
{
  int q, k;
  cin >> q >> k;

  vl t(q), v;
  rep(i, q){
    cin >> t[i];
    if(t[i] == 1){
      ll vv;
      cin >> vv;
      v.pb(vv);
    }
  }

  vl V;
  foreach(vv, v){
    V.pb(vv);
  }

  sort(all(V));
  V.erase(unique(all(V)), V.end());

  map<ll, int> nv;
  foreach(vv, v){
    int nvv = lower_bound(all(V), vv) - V.begin();
    nv[vv] = nvv;
  }

  auto itv = v.begin();
  rep(i, q){
    if(t[i] == 1){
      add(nv[*itv]+1, 1);
      itv++; 
    }else{
      ll ans = search(k)-1;
      if(ans == MAXN-1) cout << -1 << endl;
      else cout << V[ans] << endl;
      add(ans+1, -1);
    }
  }

  return 0;
}
0