結果

問題 No.2804 Fixer And Ratism
ユーザー Kou0406Kou0406
提出日時 2024-07-19 13:44:13
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,523 bytes
コンパイル時間 3,067 ms
コンパイル使用メモリ 128,200 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-19 13:44:22
合計ジャッジ時間 8,051 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 5 ms
6,940 KB
testcase_10 WA -
testcase_11 AC 55 ms
6,944 KB
testcase_12 WA -
testcase_13 AC 12 ms
6,940 KB
testcase_14 AC 45 ms
6,940 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 18 ms
6,944 KB
testcase_18 WA -
testcase_19 AC 4 ms
6,944 KB
testcase_20 WA -
testcase_21 AC 71 ms
6,944 KB
testcase_22 WA -
testcase_23 AC 123 ms
6,944 KB
testcase_24 WA -
testcase_25 AC 122 ms
6,944 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 122 ms
6,940 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 123 ms
6,944 KB
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#include<map>
#define rep(i,n) for(i=0;i<(int)(n);i++)
using namespace std;
typedef long long ll;

typedef pair<int,int> p;
typedef pair<int,string> pp;

typedef struct data{
    int rate,q2;
    string s;

    data(int rrate=0,int qq2=0,string ss=""):rate(rrate),q2(qq2),s(ss){}

    bool operator<(const data& k)const{
        return q2<k.q2||(q2==k.q2&&rate<k.rate);
    }
}Data;

int n,q;
map<string,p> dic;
vector<string> ans;

int main(){
    int i,j,cnt=0;
    string str;
    scanf("%d%d",&n,&q);
    while(q--){
        scanf("%d",&i);
        switch(i){
            case 1:
                cin>>str>>i;
                dic[str]=p(i,0);
                cnt++;
                break;
            case 2:
                scanf("%d",&i);
                n-=i;
                break;
            default:
                cin>>str>>i;
                n+=i;
                dic[str].second=1;
        }
        if(n<cnt){
            vector<Data> tmp;
            for(pair<string,p> x:dic){
                tmp.push_back(Data(x.second.first,x.second.second,x.first));
            }
            sort(tmp.begin(),tmp.end());
            rep(i,cnt-n)
                ans.push_back(tmp[i].s);
            dic.clear();
            for(;i<cnt;i++)
                dic[tmp[i].s]=p(tmp[i].rate,tmp[i].q2);
            cnt=n;
            //rep(i,ans.size())cout<<ans[i]<<" "<<flush;puts("");
        }
    }
    rep(i,ans.size())
        cout<<ans[i]<<endl;
    return 0;
}
0