結果

問題 No.2804 Fixer And Ratism
ユーザー kusaf_kusaf_
提出日時 2024-07-12 21:23:22
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 28 ms / 2,000 ms
コード長 1,700 bytes
コンパイル時間 3,657 ms
コンパイル使用メモリ 276,228 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-12 21:23:31
合計ジャッジ時間 5,607 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

template<typename T, typename Compare> struct ErasablePriorityQueue {
  priority_queue<T, vector<T>, Compare> q1, q2;
  ErasablePriorityQueue() {}
  ErasablePriorityQueue(initializer_list<T> ini): q1(ini.begin(), ini.end()) {}
  void push(T x) { q1.emplace(x); }
  void erase(T x) {
    if(!q1.empty() && q1.top() == x) {
      q1.pop();
      while(!q2.empty() && q1.top() == q2.top()) {
        q1.pop();
        q2.pop();
      }
    }
    else { q2.emplace(x); }
  }
  T top() const { return q1.top(); }
  int size() const { return q1.size() - q2.size(); }
  bool empty() const { return q1.empty(); }
};

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);

  ll N, Q;
  cin >> N >> Q;

  vector<string> name(4001);
  map<string, ll> inv;
  vector<ll> f(4001, -1);

  ErasablePriorityQueue<ll, greater<ll>> q1, q2;

  while(Q--) {
    ll type;
    cin >> type;
    if(type == 1) {
      string s;
      ll r;
      cin >> s >> r;
      name[r] = s;
      inv[s] = r;
      f[r] = 0;
      q2.push(r);
    }
    else if(type == 2) {
      ll x;
      cin >> x;
      N -= x;
    }
    else {
      string s;
      ll x;
      cin >> s >> x;
      N += x;
      ll r = inv[s];
      if(!f[r]) {
        q2.erase(r);
        q1.push(r);
        f[r] = 1;
      }
    }

    vector<ll> ans;

    while(!q2.empty() && q1.size() + q2.size() > N) {
      ll t = q2.top();
      ans.emplace_back(t);
      q2.erase(t);
    }
    while(!q1.empty() && q1.size() > N) {
      ll t = q1.top();
      ans.emplace_back(t);
      q1.erase(t);
    }

    ranges::sort(ans);
    for(auto &i : ans) { cout << name[i] << "\n"; }
  }
}
0