結果

問題 No.649 ここでちょっとQK!
ユーザー 0w10w1
提出日時 2020-03-13 15:20:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 357 ms / 3,000 ms
コード長 803 bytes
コンパイル時間 2,719 ms
コンパイル使用メモリ 203,756 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-11-22 04:48:04
合計ジャッジ時間 8,311 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 291 ms
5,248 KB
testcase_04 AC 255 ms
12,800 KB
testcase_05 AC 253 ms
12,800 KB
testcase_06 AC 248 ms
12,800 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 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 134 ms
7,168 KB
testcase_13 AC 135 ms
7,296 KB
testcase_14 AC 128 ms
7,040 KB
testcase_15 AC 140 ms
7,424 KB
testcase_16 AC 133 ms
7,552 KB
testcase_17 AC 151 ms
7,936 KB
testcase_18 AC 169 ms
8,320 KB
testcase_19 AC 188 ms
8,576 KB
testcase_20 AC 199 ms
8,960 KB
testcase_21 AC 216 ms
9,472 KB
testcase_22 AC 234 ms
9,728 KB
testcase_23 AC 252 ms
10,112 KB
testcase_24 AC 266 ms
10,496 KB
testcase_25 AC 357 ms
10,880 KB
testcase_26 AC 301 ms
11,264 KB
testcase_27 AC 3 ms
5,248 KB
testcase_28 AC 3 ms
5,248 KB
testcase_29 AC 3 ms
5,248 KB
testcase_30 AC 97 ms
7,168 KB
testcase_31 AC 95 ms
7,552 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 <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());
      }
    } else {
      if (bag0.size() == K) {
        cout << *--bag0.end() << endl;
        bag0.erase(--bag0.end());
      } else {
        cout << -1 << endl;
      }
    }
    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());
    }
  }

  return 0;
}
0