結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 24 ms
5,248 KB
testcase_04 AC 172 ms
15,616 KB
testcase_05 AC 173 ms
15,616 KB
testcase_06 AC 175 ms
15,616 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 72 ms
8,064 KB
testcase_13 AC 66 ms
8,064 KB
testcase_14 AC 70 ms
8,064 KB
testcase_15 AC 72 ms
8,192 KB
testcase_16 AC 75 ms
8,576 KB
testcase_17 AC 83 ms
8,832 KB
testcase_18 AC 92 ms
9,472 KB
testcase_19 AC 99 ms
9,984 KB
testcase_20 AC 112 ms
10,368 KB
testcase_21 AC 122 ms
11,008 KB
testcase_22 AC 137 ms
11,520 KB
testcase_23 AC 144 ms
11,904 KB
testcase_24 AC 156 ms
12,288 KB
testcase_25 AC 166 ms
12,928 KB
testcase_26 AC 182 ms
13,440 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 65 ms
8,064 KB
testcase_31 AC 65 ms
8,448 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 2 ms
5,248 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