結果

問題 No.649 ここでちょっとQK!
ユーザー monolithmonolith
提出日時 2019-11-14 20:21:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 289 ms / 3,000 ms
コード長 998 bytes
コンパイル時間 957 ms
コンパイル使用メモリ 99,872 KB
実行使用メモリ 5,920 KB
最終ジャッジ日時 2024-09-21 22:32:24
合計ジャッジ時間 5,441 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 289 ms
5,376 KB
testcase_04 AC 179 ms
5,920 KB
testcase_05 AC 175 ms
5,852 KB
testcase_06 AC 172 ms
5,580 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 94 ms
5,376 KB
testcase_13 AC 94 ms
5,376 KB
testcase_14 AC 93 ms
5,376 KB
testcase_15 AC 97 ms
5,376 KB
testcase_16 AC 90 ms
5,376 KB
testcase_17 AC 108 ms
5,376 KB
testcase_18 AC 116 ms
5,376 KB
testcase_19 AC 126 ms
5,376 KB
testcase_20 AC 134 ms
5,376 KB
testcase_21 AC 149 ms
5,376 KB
testcase_22 AC 160 ms
5,376 KB
testcase_23 AC 169 ms
5,376 KB
testcase_24 AC 179 ms
5,376 KB
testcase_25 AC 189 ms
5,376 KB
testcase_26 AC 195 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 3 ms
5,376 KB
testcase_30 AC 63 ms
5,376 KB
testcase_31 AC 63 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES

#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <cmath>
#include <cstring>
#include <algorithm>
#include <vector>
#include <queue>
#include <map>
#include <set>
#include <unordered_map> 
#include <unordered_set>
#include <functional>

using namespace std;

typedef pair<long long int, long long int> P;
typedef tuple<int, int, int> T;

long long int INF = 1e18;
long long int MOD = 1e9 + 7;

int main(){
	int Q, K;
	cin >> Q >> K;
	priority_queue<long long int> que;
	priority_queue<long long int, vector<long long int>, greater<long long int>> que2;
	for(int i = 0; i < Q; i++){
		int tp;
		cin >> tp;
		if(tp == 1){
			long long int num;
			cin >> num;
			que.push(num);
			if(que.size() > K){
				que2.push(que.top());
				que.pop();
			}
		}else{
			if(que.size() < K){
				cout << -1 << endl;
			}else{
				cout << que.top() << endl;
				que.pop();
				if(que2.size() > 0){
					que.push(que2.top());
					que2.pop();
				}
			}
		}
	}
	return 0;
}
0