結果

問題 No.649 ここでちょっとQK!
ユーザー hanyuhanyu
提出日時 2020-04-03 18:26:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 111 ms / 3,000 ms
コード長 651 bytes
コンパイル時間 1,402 ms
コンパイル使用メモリ 169,540 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-07-03 01:01:55
合計ジャッジ時間 4,873 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 17 ms
6,944 KB
testcase_04 AC 95 ms
12,928 KB
testcase_05 AC 95 ms
12,800 KB
testcase_06 AC 98 ms
12,928 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 45 ms
7,296 KB
testcase_13 AC 46 ms
7,168 KB
testcase_14 AC 47 ms
7,040 KB
testcase_15 AC 48 ms
7,168 KB
testcase_16 AC 47 ms
7,680 KB
testcase_17 AC 54 ms
7,808 KB
testcase_18 AC 61 ms
8,320 KB
testcase_19 AC 62 ms
8,576 KB
testcase_20 AC 75 ms
9,088 KB
testcase_21 AC 84 ms
9,344 KB
testcase_22 AC 89 ms
9,856 KB
testcase_23 AC 92 ms
10,112 KB
testcase_24 AC 91 ms
10,496 KB
testcase_25 AC 101 ms
10,880 KB
testcase_26 AC 111 ms
11,264 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 39 ms
7,168 KB
testcase_31 AC 41 ms
7,552 KB
testcase_32 AC 2 ms
6,944 KB
testcase_33 AC 2 ms
6,944 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using ll = long long;

int main() {
  cin.tie(0);
  ios::sync_with_stdio(false);
  
  int q, k;
  cin >> q >> k;
  
  multiset<ll> ms;
  auto it = ms.begin();
  for (int i = 0; i < q; i++) {
    int x;
    cin >> x;
    if (x == 1) {
      ll v;
      cin >> v;
      ms.insert(v);
      if (ms.size() == k && it != ms.begin()) {
        it = ms.end();
        it--;
      }
      else if (ms.size() > k && *it > v) {
        it--;
      }
    }
    else {
      if (ms.size() < k) {
        cout << "-1\n";
      }
      else {
        cout << *it << '\n';
        it = ms.erase(it);
      }
    }
  }
}
0