結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 26 ms
6,820 KB
testcase_04 AC 152 ms
12,928 KB
testcase_05 AC 146 ms
12,928 KB
testcase_06 AC 137 ms
12,928 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 3 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 66 ms
7,424 KB
testcase_13 AC 64 ms
7,424 KB
testcase_14 AC 67 ms
7,296 KB
testcase_15 AC 69 ms
7,424 KB
testcase_16 AC 61 ms
7,808 KB
testcase_17 AC 73 ms
8,064 KB
testcase_18 AC 81 ms
8,448 KB
testcase_19 AC 89 ms
8,576 KB
testcase_20 AC 99 ms
9,088 KB
testcase_21 AC 105 ms
9,472 KB
testcase_22 AC 119 ms
9,856 KB
testcase_23 AC 125 ms
10,240 KB
testcase_24 AC 150 ms
10,752 KB
testcase_25 AC 154 ms
11,008 KB
testcase_26 AC 158 ms
11,392 KB
testcase_27 AC 2 ms
6,820 KB
testcase_28 AC 2 ms
6,820 KB
testcase_29 AC 3 ms
6,820 KB
testcase_30 AC 58 ms
7,168 KB
testcase_31 AC 58 ms
7,680 KB
testcase_32 AC 3 ms
6,820 KB
testcase_33 AC 2 ms
6,816 KB
testcase_34 AC 1 ms
6,816 KB
testcase_35 AC 2 ms
6,816 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