結果

問題 No.649 ここでちょっとQK!
ユーザー cielciel
提出日時 2019-01-04 02:16:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 204 ms / 3,000 ms
コード長 638 bytes
コンパイル時間 1,640 ms
コンパイル使用メモリ 139,568 KB
実行使用メモリ 15,616 KB
最終ジャッジ日時 2024-05-03 02:37:44
合計ジャッジ時間 5,919 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 25 ms
6,944 KB
testcase_04 AC 175 ms
15,616 KB
testcase_05 AC 172 ms
15,616 KB
testcase_06 AC 181 ms
15,616 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,948 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 78 ms
7,936 KB
testcase_13 AC 74 ms
8,064 KB
testcase_14 AC 79 ms
8,064 KB
testcase_15 AC 80 ms
8,192 KB
testcase_16 AC 78 ms
8,576 KB
testcase_17 AC 91 ms
8,960 KB
testcase_18 AC 97 ms
9,472 KB
testcase_19 AC 107 ms
9,984 KB
testcase_20 AC 128 ms
10,496 KB
testcase_21 AC 127 ms
10,880 KB
testcase_22 AC 152 ms
11,648 KB
testcase_23 AC 151 ms
12,032 KB
testcase_24 AC 173 ms
12,416 KB
testcase_25 AC 186 ms
12,928 KB
testcase_26 AC 204 ms
13,568 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 66 ms
8,064 KB
testcase_31 AC 76 ms
8,448 KB
testcase_32 AC 2 ms
6,944 KB
testcase_33 AC 2 ms
6,944 KB
testcase_34 AC 2 ms
6,944 KB
testcase_35 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#include <ext/pb_ds/tag_and_trait.hpp>
template<typename K>
using tree = __gnu_pbds::tree<K,__gnu_pbds::null_type,std::less<K>,__gnu_pbds::rb_tree_tag,__gnu_pbds::tree_order_statistics_node_update>;

#include <cstdio>

int main(){
	tree<std::pair<long long,int> > v;
	int Q,K,c;
	long long n;
	scanf("%d%d",&Q,&K);
	for(int q=0;q<Q;q++){
		scanf("%d",&c);
		if(c==1){
			scanf("%lld",&n);
			v.insert({n,q});
		}else{
			if(v.size()<K){
				puts("-1");
			}else{
				auto it=v.find_by_order(K-1);
				printf("%lld\n",it->first);
				v.erase(it);
			}
		}
	}
}
0