結果

問題 No.2804 Fixer And Ratism
ユーザー reirei
提出日時 2024-07-12 21:27:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 1,527 bytes
コンパイル時間 1,905 ms
コンパイル使用メモリ 133,472 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-12 21:27:48
合計ジャッジ時間 4,148 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 13 ms
6,940 KB
testcase_04 AC 9 ms
6,940 KB
testcase_05 AC 5 ms
6,940 KB
testcase_06 AC 25 ms
6,944 KB
testcase_07 AC 8 ms
6,944 KB
testcase_08 AC 8 ms
6,940 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 7 ms
6,940 KB
testcase_11 AC 21 ms
6,944 KB
testcase_12 AC 19 ms
6,944 KB
testcase_13 AC 6 ms
6,940 KB
testcase_14 AC 17 ms
6,940 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 19 ms
6,944 KB
testcase_17 AC 8 ms
6,940 KB
testcase_18 AC 28 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 4 ms
6,944 KB
testcase_21 AC 26 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 34 ms
6,944 KB
testcase_24 AC 30 ms
6,944 KB
testcase_25 AC 34 ms
6,940 KB
testcase_26 AC 33 ms
6,940 KB
testcase_27 AC 30 ms
6,940 KB
testcase_28 AC 34 ms
6,944 KB
testcase_29 AC 32 ms
6,944 KB
testcase_30 AC 32 ms
6,940 KB
testcase_31 AC 30 ms
6,944 KB
testcase_32 AC 34 ms
6,944 KB
testcase_33 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cassert>
#include <cmath>
#include <cstring>
#include <iomanip>
#include <iostream>
#include <map>
#include <queue>
#include <set>
#include <tuple>
#include <utility>
#include <vector>
using namespace std;
using i8 = int8_t;
using i32 = int;
using i64 = long long;
// using i128 = __int128;
using u64 = unsigned long long;
using ll = long long;

void _main();
int main() {
  cin.tie(0);
  ios::sync_with_stdio(false);
  _main();
}

i64 pow(i64 j, i64 n) {
  i64 res = 1;
  while (n > 0) {
    if (n & 1)
      res *= j;
    j *= j;
    n >>= 1;
  }
  return res;
}

i64 n, q;
void _main() {
  cin >> n >> q;
  set<pair<i64, string>> a;
  set<pair<i64, string>> b;
  map<string, i64> mp;
  for (i64 _ = 0; _ < q; _++) {
    i64 op;
    cin >> op;
    if (op == 1) {
      string s;
      i64 r;
      cin >> s >> r;
      mp[s] = r;
      b.insert({r, s});
    } else if (op == 2) {
      i64 x;
      cin >> x;
      n -= x;
    } else {
      string s;
      i64 x;
      cin >> s >> x;
      n += x;
      i64 r = mp[s];
      b.erase({r, s});
      a.insert({r, s});
    }
    vector<pair<i64, string>> del;
    while (n < a.size() + b.size() && !b.empty()) {
      auto [r, s] = *b.begin();
      b.erase({r, s});
      del.push_back({r, s});
    }
    while (n < a.size() + b.size() && !a.empty()) {
      auto [r, s] = *a.begin();
      a.erase({r, s});
      del.push_back({r, s});
    }
    sort(del.begin(), del.end());
    for (auto [r, s] : del) {
      cout << s << "\n";
    }
  }
}
0