結果

問題 No.649 ここでちょっとQK!
ユーザー chocoruskchocorusk
提出日時 2018-09-20 14:09:52
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 465 ms / 3,000 ms
コード長 1,129 bytes
コンパイル時間 801 ms
コンパイル使用メモリ 89,456 KB
実行使用メモリ 29,056 KB
最終ジャッジ日時 2024-07-18 08:33:28
合計ジャッジ時間 9,804 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,400 KB
testcase_01 AC 4 ms
6,528 KB
testcase_02 AC 4 ms
6,528 KB
testcase_03 AC 290 ms
6,528 KB
testcase_04 AC 325 ms
29,056 KB
testcase_05 AC 321 ms
29,056 KB
testcase_06 AC 174 ms
6,528 KB
testcase_07 AC 4 ms
6,528 KB
testcase_08 AC 4 ms
6,528 KB
testcase_09 AC 4 ms
6,400 KB
testcase_10 AC 4 ms
6,656 KB
testcase_11 AC 4 ms
6,528 KB
testcase_12 AC 208 ms
16,640 KB
testcase_13 AC 211 ms
16,640 KB
testcase_14 AC 211 ms
16,512 KB
testcase_15 AC 203 ms
16,640 KB
testcase_16 AC 199 ms
16,640 KB
testcase_17 AC 236 ms
17,536 KB
testcase_18 AC 274 ms
18,816 KB
testcase_19 AC 276 ms
19,712 KB
testcase_20 AC 303 ms
20,736 KB
testcase_21 AC 336 ms
21,632 KB
testcase_22 AC 357 ms
22,784 KB
testcase_23 AC 380 ms
23,808 KB
testcase_24 AC 427 ms
24,832 KB
testcase_25 AC 433 ms
25,856 KB
testcase_26 AC 465 ms
26,880 KB
testcase_27 AC 4 ms
6,528 KB
testcase_28 AC 5 ms
6,528 KB
testcase_29 AC 5 ms
6,528 KB
testcase_30 AC 142 ms
13,056 KB
testcase_31 AC 136 ms
13,312 KB
testcase_32 AC 4 ms
6,528 KB
testcase_33 AC 4 ms
6,528 KB
testcase_34 AC 4 ms
6,656 KB
testcase_35 AC 4 ms
6,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;

int bit[200001], n;
 
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<=n){
		bit[i]+=x;
		i+=(i&(-i));
	}
}

int main()
{
	int q, k;
	cin>>q>>k;
	ll v[200000];
	set<ll> st;
	for(int i=0; i<q; i++){
		int t;
		cin>>t;
		if(t==2){
			v[i]=-1;
		}else{
			ll v0;
			cin>>v0;
			v[i]=v0;
			st.insert(v0);
		}
	}
	n=1;
	map<ll, int> mp;
	ll inv[200001];
	for(auto x:st){
		mp[x]=n;
		inv[n]=x;
		n++;
	}
	n--;
	for(int i=0; i<q; i++){
		if(v[i]>=0){
			add(mp[v[i]], 1);
		}else{
		    if(sum(n)<k){
		        cout<<-1<<endl;
		    }else{
			    int x1=1, x2=n;
			    while(x1!=x2){
				    int x=(x1+x2+1)/2;
				    if(sum(x-1)<k){
				    	x1=x;
				    }else{
				    	x2=x-1;
				    }
			    }
			    cout<<inv[x1]<<endl;
			    add(x1, -1);
		    }
		}
	}
	return 0;
}
0