結果

問題 No.649 ここでちょっとQK!
ユーザー cielciel
提出日時 2018-02-10 00:59:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,807 ms / 3,000 ms
コード長 475 bytes
コンパイル時間 931 ms
コンパイル使用メモリ 64,088 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-14 20:21:40
合計ジャッジ時間 23,627 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 24 ms
6,820 KB
testcase_04 AC 67 ms
6,816 KB
testcase_05 AC 73 ms
6,816 KB
testcase_06 AC 68 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 1 ms
6,820 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 509 ms
6,816 KB
testcase_13 AC 503 ms
6,816 KB
testcase_14 AC 495 ms
6,820 KB
testcase_15 AC 593 ms
6,820 KB
testcase_16 AC 625 ms
6,816 KB
testcase_17 AC 779 ms
6,816 KB
testcase_18 AC 936 ms
6,816 KB
testcase_19 AC 1,116 ms
6,816 KB
testcase_20 AC 1,302 ms
6,820 KB
testcase_21 AC 1,537 ms
6,820 KB
testcase_22 AC 1,762 ms
6,816 KB
testcase_23 AC 1,990 ms
6,816 KB
testcase_24 AC 2,263 ms
6,816 KB
testcase_25 AC 2,507 ms
6,816 KB
testcase_26 AC 2,807 ms
6,816 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 2 ms
6,820 KB
testcase_29 AC 2 ms
6,816 KB
testcase_30 AC 505 ms
6,820 KB
testcase_31 AC 635 ms
6,820 KB
testcase_32 AC 2 ms
6,820 KB
testcase_33 AC 2 ms
6,816 KB
testcase_34 AC 2 ms
6,820 KB
testcase_35 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("O3")
#pragma GCC target("arch=corei7-avx")
#include <deque>
#include <algorithm>
#include <cstdio>
using namespace std;

int main(){
	deque<long long>v;
	int Q,K,q;
	long long n;
	scanf("%d%d",&Q,&K);
	for(;Q--;){
		scanf("%d",&q);
		if(q==1){
			scanf("%lld",&n);
			auto it=lower_bound(v.begin(),v.end(),n);
			v.insert(it,n);
		}else{
			if(v.size()<K){
				puts("-1");
			}else{
				printf("%lld\n",v[K-1]);
				v.erase(v.begin()+K-1);
			}
		}
	}
}
0