結果
問題 | No.2804 Fixer And Ratism |
ユーザー | Aeren |
提出日時 | 2024-07-12 21:42:04 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,308 bytes |
コンパイル時間 | 3,226 ms |
コンパイル使用メモリ | 270,684 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-12 21:42:10 |
合計ジャッジ時間 | 5,272 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 17 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | AC | 5 ms
5,376 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 20 ms
5,376 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 27 ms
5,376 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 26 ms
5,376 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 2 ms
5,376 KB |
ソースコード
// #include <bits/allocator.h> // Temp fix for gcc13 global pragma // #pragma GCC target("avx2,bmi2,popcnt,lzcnt") // #pragma GCC optimize("O3,unroll-loops") #include <bits/stdc++.h> // #include <x86intrin.h> using namespace std; #if __cplusplus >= 202002L using namespace numbers; #endif #ifdef LOCAL #include "Debug.h" #else #define debug_endl() 42 #define debug(...) 42 #define debug2(...) 42 #define debugbin(...) 42 #endif int main(){ cin.tie(0)->sync_with_stdio(0); cin.exceptions(ios::badbit | ios::failbit); int computer, qn; cin >> computer >> qn; set<string> did_contribute, left; map<string, int> rating_of; vector<pair<int, string>> contributed; vector<pair<int, string>> useless; vector<string> res; for(auto qi = 0; qi < qn; ++ qi){ int type; cin >> type; if(type == 1){ string name; int r; cin >> name >> r; useless.insert(partition_point(useless.begin(), useless.end(), [&](auto &x){ return x.first > r; }), pair{r, name}); } else if(type == 2){ int x; cin >> x; computer -= x; } else{ string name; int x; cin >> name >> x; computer += x; if(!did_contribute.contains(name) && !left.contains(name)){ did_contribute.insert(name); int r = rating_of[name]; useless.erase(partition_point(useless.begin(), useless.end(), [&](auto &x){ return x.first > r; })); contributed.insert(partition_point(contributed.begin(), contributed.end(), [&](auto &x){ return x.first > r; }), pair{r, name}); } } if((int)contributed.size() + (int)useless.size() <= computer){ continue; } if((int)contributed.size() <= computer){ int size = min((int)useless.size(), computer - (int)contributed.size()); while((int)useless.size() > size){ res.push_back(useless.back().second); useless.pop_back(); left.insert(res.back()); } } else{ while((int)contributed.size() > computer || !useless.empty()){ if(useless.empty() || (int)contributed.size() > computer && contributed.back().first < useless.back().first){ res.push_back(contributed.back().second); contributed.pop_back(); } else{ res.push_back(useless.back().second); useless.pop_back(); } left.insert(res.back()); } } } ranges::copy(res, ostream_iterator<string>(cout, "\n")); return 0; } /* */