結果

問題 No.2804 Fixer And Ratism
ユーザー suzuishisuzuishi
提出日時 2024-07-12 22:07:34
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 1,194 bytes
コンパイル時間 3,200 ms
コンパイル使用メモリ 262,028 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-12 22:07:45
合計ジャッジ時間 6,983 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 41 ms
5,376 KB
testcase_04 AC 24 ms
5,376 KB
testcase_05 AC 11 ms
5,376 KB
testcase_06 AC 73 ms
5,376 KB
testcase_07 AC 24 ms
5,376 KB
testcase_08 AC 25 ms
5,376 KB
testcase_09 AC 6 ms
5,376 KB
testcase_10 AC 20 ms
5,376 KB
testcase_11 AC 69 ms
5,376 KB
testcase_12 AC 56 ms
5,376 KB
testcase_13 AC 15 ms
5,376 KB
testcase_14 AC 57 ms
5,376 KB
testcase_15 AC 6 ms
5,376 KB
testcase_16 AC 57 ms
5,376 KB
testcase_17 AC 23 ms
5,376 KB
testcase_18 AC 97 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 9 ms
5,376 KB
testcase_21 AC 84 ms
5,376 KB
testcase_22 AC 4 ms
5,376 KB
testcase_23 AC 140 ms
5,376 KB
testcase_24 AC 136 ms
5,376 KB
testcase_25 AC 142 ms
5,376 KB
testcase_26 AC 141 ms
5,376 KB
testcase_27 AC 140 ms
5,376 KB
testcase_28 AC 140 ms
5,376 KB
testcase_29 AC 147 ms
5,376 KB
testcase_30 AC 140 ms
5,376 KB
testcase_31 AC 136 ms
5,376 KB
testcase_32 AC 142 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for(int i = 0; i < n; i++)
using namespace std;
using P = pair<int, string>;
int main() {
   int n, q; cin >> n >> q;
   set<P> fx, ufx;
   map<string, int> s2r;
   while(q--) {
      int t; cin >> t;
      if(t == 1) {
         string s; int r; cin >> s >> r;
         s2r[s] = r;
         ufx.insert(P(r, s));
         if(fx.size() + ufx.size() > n) {
            cout << ufx.begin()->second << endl;
            ufx.erase(ufx.begin());
         }
      } else if(t == 2) {
         int x; cin >> x;
         n -= x;
         if(fx.size() + ufx.size() > n) {
            int g = fx.size() + ufx.size() - n;
            set<P> ans;
            rep(i, g) {
               if(!ufx.empty()) {
                  ans.insert(*ufx.begin());
                  ufx.erase(ufx.begin());
               } else {
                  ans.insert(*fx.begin());
                  fx.erase(fx.begin());
               }
            }
            for(auto i: ans) cout << i.second << endl;
         }
      } else {
         string s; int x; cin >> s >> x;
         n += x;
         int r = s2r[s];
         ufx.erase(P(r, s));
         fx.insert(P(r, s));
      }
   }
}
0