結果

問題 No.2804 Fixer And Ratism
ユーザー zeta7532zeta7532
提出日時 2024-07-09 21:00:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 1,589 bytes
コンパイル時間 2,435 ms
コンパイル使用メモリ 226,904 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-11 23:11:41
合計ジャッジ時間 6,225 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 47 ms
5,376 KB
testcase_04 AC 28 ms
5,376 KB
testcase_05 AC 12 ms
5,376 KB
testcase_06 AC 78 ms
5,376 KB
testcase_07 AC 25 ms
5,376 KB
testcase_08 AC 28 ms
5,376 KB
testcase_09 AC 6 ms
5,376 KB
testcase_10 AC 21 ms
5,376 KB
testcase_11 AC 81 ms
5,376 KB
testcase_12 AC 60 ms
5,376 KB
testcase_13 AC 16 ms
5,376 KB
testcase_14 AC 59 ms
5,376 KB
testcase_15 AC 7 ms
5,376 KB
testcase_16 AC 63 ms
5,376 KB
testcase_17 AC 25 ms
5,376 KB
testcase_18 AC 103 ms
5,376 KB
testcase_19 AC 5 ms
5,376 KB
testcase_20 AC 10 ms
5,376 KB
testcase_21 AC 104 ms
5,376 KB
testcase_22 AC 5 ms
5,376 KB
testcase_23 AC 153 ms
5,376 KB
testcase_24 AC 144 ms
5,376 KB
testcase_25 AC 163 ms
5,376 KB
testcase_26 AC 145 ms
5,376 KB
testcase_27 AC 148 ms
5,376 KB
testcase_28 AC 153 ms
5,376 KB
testcase_29 AC 149 ms
5,376 KB
testcase_30 AC 149 ms
5,376 KB
testcase_31 AC 144 ms
5,376 KB
testcase_32 AC 152 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
using namespace std;
using ll = long long;
const ll mod = 998244353;
#define fi first
#define se second
#define rep(i,n) for(ll i=0;i<n;i++)
#define all(x) x.begin(),x.end()
#define faster ios::sync_with_stdio(false);cin.tie(nullptr)

int main() {
    ll N,Q;
    cin >> N >> Q;
    vector<ll> R(100,-1);
    vector<bool> used(100,false);
    map<string,ll> M;
    vector<string> VS;
    set<pair<ll,ll>> s1,s2;
    rep(i,Q){
        ll q;
        cin >> q;
        if(q==1){
            string s;
            ll r;
            cin >> s >> r;
            M[s]=VS.size();
            R[VS.size()]=r;
            s2.insert({r,VS.size()});
            VS.push_back(s);
        }
        if(q==2){
            ll x;
            cin >> x;
            N-=x;
        }
        if(q==3){
            string s;
            ll x;
            cin >> s >> x;
            used[M[s]]=true;
            N+=x;
            s2.erase({R[M[s]],M[s]});
            s1.insert({R[M[s]],M[s]});
        }
        set<pair<ll,ll>> s3;
        while(s1.size()+s2.size()>N){
            if(s2.size()>0){
                auto it=*s2.begin();
                s3.insert(it);
                s2.erase(it);
            }else{
                auto it=*s1.begin();
                s3.insert(it);
                s1.erase(it);
            }
        }
        while(s3.size()>0){
            auto it=*s3.begin();
            cout << VS[it.se] << endl;
            s3.erase(it);
        }
    }
    return 0;
}
0