結果
問題 | No.2804 Fixer And Ratism |
ユーザー | primenumber11 |
提出日時 | 2024-06-17 20:51:25 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,016 bytes |
コンパイル時間 | 4,101 ms |
コンパイル使用メモリ | 296,740 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-11 23:09:59 |
合計ジャッジ時間 | 7,751 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,812 KB |
testcase_02 | AC | 2 ms
6,944 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,944 KB |
testcase_10 | WA | - |
testcase_11 | AC | 65 ms
6,944 KB |
testcase_12 | WA | - |
testcase_13 | AC | 13 ms
6,940 KB |
testcase_14 | AC | 54 ms
6,940 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 22 ms
6,944 KB |
testcase_18 | WA | - |
testcase_19 | AC | 4 ms
6,944 KB |
testcase_20 | WA | - |
testcase_21 | AC | 83 ms
6,944 KB |
testcase_22 | WA | - |
testcase_23 | AC | 138 ms
6,944 KB |
testcase_24 | WA | - |
testcase_25 | AC | 138 ms
6,944 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 137 ms
6,940 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 137 ms
6,940 KB |
testcase_33 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; int main() { int N, Q; cin >> N >> Q; //人を並べるための配列 vector<pair<int,string>> P; //使用可能にしたかどうかを管理するmap map<string,bool> mp; for(int i = 0;i < Q; i++) { int q; cin >> q; if(q == 1) { string s; int r; cin >> s >> r; mp[s] = false; P.push_back({r, s}); } if(q == 2) { int x; cin >> x; N -= x; } if(q == 3) { string s; int x; cin >> s >> x; mp[s] = true; N += x; } if((q == 1 || q == 2) && (int)P.size() > N) { sort(P.begin(),P.end()); int j=0; while((int)P.size() > N) { if(mp[P[j].second] == true && P[j].first <= 4000) { P.push_back({P[j].first + 5000, P[j].second}); P.erase(P.begin()+j); } else { cout << P[j].second << endl; P.erase(P.begin()+j); } sort(P.begin(),P.end()); } } } }