結果

問題 No.649 ここでちょっとQK!
ユーザー matsukin1111matsukin1111
提出日時 2019-06-21 14:53:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 293 ms / 3,000 ms
コード長 2,184 bytes
コンパイル時間 1,122 ms
コンパイル使用メモリ 103,352 KB
実行使用メモリ 8,908 KB
最終ジャッジ日時 2024-06-07 01:19:31
合計ジャッジ時間 8,152 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 293 ms
5,376 KB
testcase_04 AC 190 ms
8,804 KB
testcase_05 AC 191 ms
8,908 KB
testcase_06 AC 180 ms
7,244 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 119 ms
5,924 KB
testcase_13 AC 119 ms
6,052 KB
testcase_14 AC 117 ms
5,928 KB
testcase_15 AC 120 ms
6,048 KB
testcase_16 AC 116 ms
5,924 KB
testcase_17 AC 128 ms
6,176 KB
testcase_18 AC 140 ms
6,436 KB
testcase_19 AC 154 ms
6,824 KB
testcase_20 AC 164 ms
6,944 KB
testcase_21 AC 180 ms
7,164 KB
testcase_22 AC 190 ms
7,416 KB
testcase_23 AC 202 ms
7,672 KB
testcase_24 AC 215 ms
7,928 KB
testcase_25 AC 227 ms
8,436 KB
testcase_26 AC 241 ms
8,440 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 3 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 82 ms
5,668 KB
testcase_31 AC 80 ms
5,668 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 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cstdio>
#include<cstring>
#include <cstdlib>  
#include <math.h>
#include <cmath>
#include<cctype>
#include<string>
#include<set>
#include<iomanip>
#include <map>
#include<algorithm>
#include <functional>
#include<vector>
#include<climits>
#include<stack>
#include<queue>
#include<bitset>
#include <deque>
#include <climits>
#include <typeinfo>
#include <utility> 
using namespace std;
using ll = long long;
using R = double;
using Data = pair < ll, vector <ll>>;
template<typename T>using min_priority_queue = priority_queue<T, vector<T>, greater<T>>;
const ll MOD = 1e9 + 7;
const ll inf = 1LL << 60;
struct edge { ll from; ll to; ll cost; };
typedef pair<ll, ll>pll;
#define all(x) (x).begin(),(x).end()
#define rep(i,m,n) for(ll i = m;i < n;++i)
#define pb push_back
#define fore(i,a) for(auto &i:a)
#define rrep(i,m,n) for(ll i = m;i >= n;--i)
#define INF INT_MAX/2




template<typename T>
struct BIT {
	int n;
	vector<T>dat;
	BIT(int n = 0) {
		initialize(n);
	}
	void initialize(int temp) {
		n = temp;
		dat.resize(n);
		rep(i, 0, n)dat[i] = 0;
	}
	T sum(int i) {
		T s = 0;
		while (i >= 0) {
			s += dat[i];
			i = (i & (i + 1)) - 1;
		}
		return s;
	}
	T sum_between(int i, int j) {
		if (i > j)return 0;
		return sum(j) - sum(i-1);
	}
	void plus(int i ,T x) {
		while (i < n) {
			dat[i] += x;
			i |= i + 1;
		}
	}
	int lower_bound(T x) {
		if (sum(n - 1) < x)return -1;
		else if (sum(0) >= x)return 0;
		int ng = 0, ok = n - 1;
		while (ok - ng > 1) {
			int mid = (ok + ng) / 2;
			if (sum(mid) >= x)ok = mid;
			else ng = mid;
		}
		return ok;
	}
};

int T[202020];
ll A[202020];

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

	vector<ll>dic;
	rep(i, 0, Q) {
		cin >> T[i];
		if (T[i] == 1) {
			cin >> A[i];
			dic.pb(A[i]);
		}
	}
	sort(all(dic));
	dic.erase(unique(all(dic)),dic.end());
	BIT<ll>bitnum(dic.size());

	rep(i, 0, Q) {
		if (T[i] == 1) {
			ll a = A[i];
			int ind = lower_bound(all(dic),A[i])-dic.begin();
			bitnum.plus(ind, 1LL);
		}
		else {
			int ind = bitnum.lower_bound(K);
			if (ind == -1) {
				cout << -1 << endl;
			}
			else {
				bitnum.plus(ind, -1LL);
				cout << dic[ind] << endl;
			}
		}
	}


	return 0;
}
0