結果
問題 | No.649 ここでちょっとQK! |
ユーザー | 0w1 |
提出日時 | 2020-03-13 15:18:19 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 819 bytes |
コンパイル時間 | 2,357 ms |
コンパイル使用メモリ | 203,632 KB |
実行使用メモリ | 12,800 KB |
最終ジャッジ日時 | 2024-11-22 04:46:33 |
合計ジャッジ時間 | 9,535 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | AC | 295 ms
5,248 KB |
testcase_04 | AC | 255 ms
12,800 KB |
testcase_05 | AC | 252 ms
12,800 KB |
testcase_06 | AC | 250 ms
12,672 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 2 ms
5,248 KB |
testcase_33 | WA | - |
testcase_34 | AC | 2 ms
5,248 KB |
testcase_35 | AC | 2 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int Q, K; cin >> Q >> K; multiset<int64_t> bag0; multiset<int64_t> bag1; while (Q--) { int P; cin >> P; if (P == 1) { int64_t V; cin >> V; bag0.insert(V); if (bag1.size() && *bag1.begin() < *--bag0.end()) { bag1.insert(*--bag0.end()); bag0.erase(--bag0.end()); } while (bag0.size() < K && bag1.size()) { bag0.insert(*bag1.begin()); bag1.erase(bag1.begin()); } while (bag0.size() > K) { bag1.insert(*--bag0.end()); bag0.erase(--bag0.end()); } } else { if (bag0.size() == K) { cout << *--bag0.end() << endl; bag0.erase(--bag0.end()); } else { cout << -1 << endl; } } } return 0; }