結果

問題 No.649 ここでちょっとQK!
ユーザー CaiiiiiiiiCaiiiiiiii
提出日時 2024-05-28 00:19:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 129 ms / 3,000 ms
コード長 565 bytes
コンパイル時間 1,608 ms
コンパイル使用メモリ 170,328 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-05-28 00:19:18
合計ジャッジ時間 5,437 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 24 ms
6,944 KB
testcase_04 AC 127 ms
12,928 KB
testcase_05 AC 129 ms
12,928 KB
testcase_06 AC 122 ms
12,928 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 54 ms
7,424 KB
testcase_13 AC 60 ms
7,424 KB
testcase_14 AC 52 ms
7,296 KB
testcase_15 AC 57 ms
7,424 KB
testcase_16 AC 52 ms
7,808 KB
testcase_17 AC 61 ms
8,064 KB
testcase_18 AC 68 ms
8,448 KB
testcase_19 AC 75 ms
8,704 KB
testcase_20 AC 107 ms
9,088 KB
testcase_21 AC 92 ms
9,472 KB
testcase_22 AC 98 ms
9,856 KB
testcase_23 AC 106 ms
10,240 KB
testcase_24 AC 112 ms
10,624 KB
testcase_25 AC 119 ms
11,008 KB
testcase_26 AC 129 ms
11,392 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 47 ms
7,296 KB
testcase_31 AC 49 ms
7,808 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

typedef long long LL;

const int N = 1e5 + 7;
const int MOD = 998244353;

int n, m, a[N], ans;
std::multiset<LL> big, small;

int main() {

  scanf("%d%d", &n, &m);

  while(n--) {
    LL t, x;
    scanf("%lld", &t);
    if(t == 1) {
      scanf("%lld", &x);
      small.insert(x);
      if(small.size() >= m) {
	big.insert(*small.rbegin());
	small.erase(--small.end());
      }
    }
    else {
      if(!big.empty()) {
	printf("%lld\n", *big.begin());
	big.erase(big.begin());
      }
      else
	puts("-1");
    }
  }
  
  return 0;

}
0