結果

問題 No.649 ここでちょっとQK!
ユーザー Mr.SpockMr.Spock
提出日時 2020-12-26 21:44:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 260 ms / 3,000 ms
コード長 683 bytes
コンパイル時間 1,638 ms
コンパイル使用メモリ 172,388 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-09-25 01:53:37
合計ジャッジ時間 6,138 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 260 ms
6,940 KB
testcase_04 AC 153 ms
12,928 KB
testcase_05 AC 157 ms
12,672 KB
testcase_06 AC 137 ms
12,672 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 74 ms
7,168 KB
testcase_13 AC 73 ms
7,168 KB
testcase_14 AC 71 ms
7,168 KB
testcase_15 AC 84 ms
7,168 KB
testcase_16 AC 74 ms
7,552 KB
testcase_17 AC 90 ms
7,808 KB
testcase_18 AC 104 ms
8,320 KB
testcase_19 AC 111 ms
8,576 KB
testcase_20 AC 126 ms
8,960 KB
testcase_21 AC 136 ms
9,216 KB
testcase_22 AC 149 ms
9,856 KB
testcase_23 AC 160 ms
9,984 KB
testcase_24 AC 176 ms
10,368 KB
testcase_25 AC 188 ms
10,752 KB
testcase_26 AC 208 ms
11,136 KB
testcase_27 AC 3 ms
6,944 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 3 ms
6,940 KB
testcase_30 AC 70 ms
7,168 KB
testcase_31 AC 72 ms
7,424 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<bits/stdc++.h>
using namespace std;
typedef long long ll;
int main() {
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	ll q, k;
	cin >> q >> k;
	multiset<ll>m1, m2;
	for (ll i = 0; i < q; i++) {
		ll type;
		cin >> type;
		if (type == 1) {
			ll val;
			cin >> val;
			m1.insert(val);
			if (m1.size() > k) {
				ll val1 = *m1.rbegin();
				m1.erase(m1.find(val1));
				m2.insert(val1);
			}
		} else {
			if (m1.size() != k)
				cout << "-1" << endl;
			else {
				ll val1 = *m1.rbegin();
				cout << val1 << endl;
				m1.erase(m1.find(val1));
				if (m2.size() >= 1) {
					ll val2 = *m2.begin();
					m2.erase(m2.find(val2));
					m1.insert(val2);
				}
			}
		}
	}
}
0