結果

問題 No.649 ここでちょっとQK!
ユーザー kekenxkekenx
提出日時 2020-02-09 10:20:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 92 ms / 3,000 ms
コード長 730 bytes
コンパイル時間 1,695 ms
コンパイル使用メモリ 174,304 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-01 05:46:38
合計ジャッジ時間 5,061 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 25 ms
6,820 KB
testcase_04 AC 71 ms
6,820 KB
testcase_05 AC 60 ms
6,816 KB
testcase_06 AC 59 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,824 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 45 ms
6,816 KB
testcase_13 AC 44 ms
6,816 KB
testcase_14 AC 44 ms
6,816 KB
testcase_15 AC 46 ms
6,820 KB
testcase_16 AC 34 ms
6,820 KB
testcase_17 AC 45 ms
6,820 KB
testcase_18 AC 51 ms
6,820 KB
testcase_19 AC 57 ms
6,820 KB
testcase_20 AC 60 ms
6,816 KB
testcase_21 AC 68 ms
6,816 KB
testcase_22 AC 71 ms
6,820 KB
testcase_23 AC 77 ms
6,820 KB
testcase_24 AC 81 ms
6,820 KB
testcase_25 AC 88 ms
6,820 KB
testcase_26 AC 92 ms
6,820 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 2 ms
6,816 KB
testcase_29 AC 3 ms
6,816 KB
testcase_30 AC 39 ms
6,816 KB
testcase_31 AC 33 ms
6,816 KB
testcase_32 AC 2 ms
6,816 KB
testcase_33 AC 1 ms
6,820 KB
testcase_34 AC 2 ms
6,820 KB
testcase_35 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
typedef long long ll;
int q, k;
priority_queue<ll, vector<ll>, greater<ll>> minq;
priority_queue<ll> maxq;

void f1() {
  ll v;
  scanf("%lld", &v);

  if (maxq.size() < k) {
    maxq.push(v);
  } else {
    if (maxq.top() > v) {
      ll tmp = maxq.top(); maxq.pop();
      maxq.push(v);
      v = tmp;
    }
    minq.push(v);
  }
}

void f2() {
  if (maxq.size() < k) {
    puts("-1");
  } else {
    cout << maxq.top() << endl;
    maxq.pop();
    if (minq.size() > 0) {
      maxq.push(minq.top()); minq.pop();
    }
  }
}

int main() {
  scanf("%d %d", &q, &k);

  while (q--) {
    int query;
    scanf("%d", &query);
    if (query == 1) f1();
    else f2();
  }
  return 0;
}
0