結果

問題 No.649 ここでちょっとQK!
ユーザー drken1215drken1215
提出日時 2018-02-13 11:02:44
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,736 bytes
コンパイル時間 702 ms
コンパイル使用メモリ 67,148 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 09:53:10
合計ジャッジ時間 7,491 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 262 ms
5,376 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 2 ms
5,376 KB
testcase_08 WA -
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
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 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 69 ms
5,376 KB
testcase_31 AC 69 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 WA -
testcase_35 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;

/* BIT */
const int SIZE_B = 210000; //use bit[1] ~ bit[SIZE_B]
struct BIT {
  int bit[SIZE_B+1];
    
  BIT() {
	for (int i = 0; i <= SIZE_B; ++i) bit[i] = 0;
  }
    
  inline void add(int a, int x) {
	for (int i = a; i <= SIZE_B; i += i & -i)
	  bit[i] = bit[i] + x;
  }
    
  inline int sum(int a) {
	int res = 0;
	for (int i = a; i > 0; i -= i & -i)
	  res = res + bit[i];
	return res;
  }
};

/* 目的のデータ構造 */
struct SET {
  BIT bit;

  // 挿入
  void insert(int num) { bit.add(num, 1); }

  // 削除
  void erase(int num) { bit.add(num, -1); }

  // BIT 上の二分探索
  int get(int k) {
	++k;
	int res = 0;
	int N = 1; while (N <= SIZE_B) N *= 2;
	for (int i = N/2; i > 0; i /= 2) {
	  if (res + i <= SIZE_B && bit.bit[res + i] < k) {
		k = k - bit.bit[res + i];
		res = res + i;
	  }
	}
	return res + 1;
  }
};


int T[210000], V[210000]; // 入力

int main() {
  SET S;
  int Q, K;
  cin >> Q >> K;

  // クエリ先読み
  vector<int> queries;
  for (int i = 0; i < Q; ++i) {
	cin >> T[i];
	if (T[i] == 1) cin >> V[i], queries.push_back(V[i]);
  }

  // 座標圧縮
  sort(queries.begin(), queries.end());
  queries.erase(unique(queries.begin(), queries.end()), queries.end());
  
  // クエリに答える
  for (int i = 0; i < Q; ++i) {
	if (T[i] == 1) {
	  int index = lower_bound(queries.begin(), queries.end(), V[i]) - queries.begin();
	  ++index; // 1-index にする
	  S.insert(index);
	}
	else {
	  int size = S.bit.sum(SIZE_B); // S の要素数
	  if (K > size) {
		cout << -1 << endl;
	  }
	  else {
		int val = S.get(K-1);
		cout << queries[val - 1] << endl;
		S.erase(val);
	  }
	}
  }
}















0