結果
問題 | No.2804 Fixer And Ratism |
ユーザー | zeta7532 |
提出日時 | 2024-07-09 20:53:27 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,448 bytes |
コンパイル時間 | 2,687 ms |
コンパイル使用メモリ | 224,964 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-11 23:11:35 |
合計ジャッジ時間 | 6,797 ms |
ジャッジサーバーID (参考情報) |
judge2 / 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 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 6 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | AC | 83 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | AC | 17 ms
5,376 KB |
testcase_14 | AC | 61 ms
5,376 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 28 ms
5,376 KB |
testcase_18 | WA | - |
testcase_19 | AC | 4 ms
5,376 KB |
testcase_20 | WA | - |
testcase_21 | AC | 108 ms
5,376 KB |
testcase_22 | WA | - |
testcase_23 | AC | 162 ms
5,376 KB |
testcase_24 | WA | - |
testcase_25 | AC | 196 ms
5,376 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 165 ms
5,376 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 160 ms
5,376 KB |
testcase_33 | WA | - |
ソースコード
#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]}); } while(s1.size()+s2.size()>N){ if(s2.size()>0){ auto it=*s2.begin(); cout << VS[it.se] << endl; s2.erase(it); }else{ auto it=*s1.begin(); cout << VS[it.se] << endl; s1.erase(it); } } } return 0; }