結果

問題 No.649 ここでちょっとQK!
ユーザー kmjpkmjp
提出日時 2018-02-09 22:31:45
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 261 ms / 3,000 ms
コード長 1,422 bytes
コンパイル時間 1,630 ms
コンパイル使用メモリ 166,012 KB
実行使用メモリ 10,428 KB
最終ジャッジ日時 2024-10-08 15:48:54
合計ジャッジ時間 5,246 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
7,516 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 261 ms
6,820 KB
testcase_04 AC 75 ms
10,032 KB
testcase_05 AC 73 ms
9,812 KB
testcase_06 AC 68 ms
10,400 KB
testcase_07 AC 2 ms
7,516 KB
testcase_08 AC 2 ms
7,388 KB
testcase_09 AC 2 ms
7,520 KB
testcase_10 AC 2 ms
7,524 KB
testcase_11 AC 2 ms
7,516 KB
testcase_12 AC 64 ms
8,572 KB
testcase_13 AC 64 ms
8,428 KB
testcase_14 AC 63 ms
8,504 KB
testcase_15 AC 64 ms
8,688 KB
testcase_16 AC 62 ms
8,516 KB
testcase_17 AC 67 ms
9,152 KB
testcase_18 AC 74 ms
10,428 KB
testcase_19 AC 82 ms
9,716 KB
testcase_20 AC 88 ms
9,596 KB
testcase_21 AC 94 ms
8,292 KB
testcase_22 AC 101 ms
9,108 KB
testcase_23 AC 110 ms
9,352 KB
testcase_24 AC 115 ms
8,096 KB
testcase_25 AC 125 ms
10,108 KB
testcase_26 AC 126 ms
9,184 KB
testcase_27 AC 3 ms
7,548 KB
testcase_28 AC 3 ms
7,416 KB
testcase_29 AC 3 ms
7,548 KB
testcase_30 AC 55 ms
8,584 KB
testcase_31 AC 54 ms
9,004 KB
testcase_32 AC 3 ms
7,648 KB
testcase_33 AC 2 ms
7,388 KB
testcase_34 AC 2 ms
7,516 KB
testcase_35 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------

template<class V, int ME> class BIT {
public:
	V bit[1<<ME];
	V operator()(int e) {if(e<0) return 0;V s=0;e++;while(e) s+=bit[e-1],e-=e&-e; return s;}
	void add(int e,V v) { e++; while(e<=1<<ME) bit[e-1]+=v,e+=e&-e;}
};
BIT<int,20> bt;

int Q,K;
int A[202020];
ll V[202020];
vector<ll> C;

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>Q>>K;
	C.push_back(-1);
	FOR(i,Q) {
		cin>>A[i];
		if(A[i]==1) {
			cin>>V[i];
			C.push_back(V[i]);
		}
	}
	sort(ALL(C));
	
	FOR(i,Q) {
		if(A[i]==1) {
			bt.add(lower_bound(ALL(C),V[i])-C.begin(),1);
		}
		else {
			x=0;
			if(bt(1<<18)<K) {
				cout<<-1<<endl;
			}
			else {
				for(j=18;j>=0;j--) {
					if(bt(x+(1<<j))<K) x+=1<<j;
				}
				cout<<C[x+1]<<endl;
				bt.add(x+1,-1);
			}
			
		}
	}
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0