結果

問題 No.2804 Fixer And Ratism
ユーザー moguramogura
提出日時 2024-07-12 23:30:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 2,078 bytes
コンパイル時間 4,692 ms
コンパイル使用メモリ 251,268 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-12 23:30:13
合計ジャッジ時間 6,997 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 AC 13 ms
6,940 KB
testcase_04 AC 9 ms
6,940 KB
testcase_05 AC 5 ms
6,940 KB
testcase_06 AC 24 ms
6,944 KB
testcase_07 AC 9 ms
6,940 KB
testcase_08 AC 9 ms
6,940 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 6 ms
6,940 KB
testcase_11 AC 21 ms
6,944 KB
testcase_12 AC 18 ms
6,944 KB
testcase_13 AC 6 ms
6,940 KB
testcase_14 AC 17 ms
6,940 KB
testcase_15 AC 3 ms
6,944 KB
testcase_16 AC 19 ms
6,940 KB
testcase_17 AC 8 ms
6,944 KB
testcase_18 AC 26 ms
6,944 KB
testcase_19 AC 3 ms
6,944 KB
testcase_20 AC 4 ms
6,940 KB
testcase_21 AC 26 ms
6,940 KB
testcase_22 AC 3 ms
6,940 KB
testcase_23 AC 33 ms
6,940 KB
testcase_24 AC 28 ms
6,940 KB
testcase_25 AC 32 ms
6,944 KB
testcase_26 AC 31 ms
6,940 KB
testcase_27 AC 29 ms
6,940 KB
testcase_28 AC 32 ms
6,944 KB
testcase_29 AC 31 ms
6,940 KB
testcase_30 AC 31 ms
6,944 KB
testcase_31 AC 29 ms
6,940 KB
testcase_32 AC 31 ms
6,940 KB
testcase_33 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
#define rep(i,n) for(int i = 0; i < n; i++)
#define all(a) a.begin(),a.end()
#define SORT(a) sort(all(a));
#define MIN(a) *min_element(all(a))
#define MAX(a) *max_element(all(a))
#define SUM(a) accumulate(all(a),0LL)
using ll=long long;
using ld=long double;
using ull=unsigned long;
ll MOD=998244353;
using mint = static_modint<998244353>;
const int dx[]={0,1,0,-1,1,-1,1,-1};const int dy[]={1,0,-1,0,1,1,-1,-1};
const string ALPHA="ABCDEFGHIJKLMNOPQRSTUVWXYZ";const string alpha="abcdefghijklmnopqrstuvwxyz";
int main(){
  cin.tie(nullptr);
  cout.tie(nullptr);
  ios::sync_with_stdio(false);
  ll n,q;cin>>n>>q;
  ll pc=n;
  map<ll,string>mp;    //ratingからユーザーネームへ
  map<string,ll>mp2;
  set<ll>repair;
  set<ll>unrepair;
  ll cnt=0;
  rep(i,q){
  	ll num;cin>>num;
  	if(num==1){
  		string s;
  		ll r;
  		cin>>s>>r;
  		mp[r]=s;
  		mp2[s]=r;
  		unrepair.insert(r);
  		cnt++;
  		if(cnt>pc){
  			vector<ll>ans(0);
  			while(cnt!=pc){
  				cnt--;
  				if(unrepair.size()==0){
  					auto itr=repair.begin();
  					//cout<<mp[*itr]<<endl;
  					ans.push_back(*itr);
  					repair.erase(*itr);
  				}
  				else{
  					auto itr=unrepair.begin();
  					//cout<<mp[*itr]<<endl;
  					ans.push_back(*itr);
  					unrepair.erase(*itr);
  				}
  			}
  			SORT(ans);
  			rep(i,ans.size()){cout<<mp[ans[i]]<<endl;}
  		}
  	}
  	if(num==2){
  		ll x;cin>>x;
  		pc-=x;
  		if(cnt>pc){
  			vector<ll>ans(0);
  			while(cnt!=pc){
  				cnt--;
  				if(unrepair.size()==0){
  					auto itr=repair.begin();
  					//cout<<mp[*itr]<<endl;
  					ans.push_back(*itr);
  					repair.erase(*itr);
  				}
  				else{
  					auto itr=unrepair.begin();
  					//cout<<mp[*itr]<<endl;
  					ans.push_back(*itr);
  					unrepair.erase(*itr);
  				}
  			}
  			SORT(ans);
  			rep(i,ans.size()){cout<<mp[ans[i]]<<endl;}
  		}
  	}
  	if(num==3){
  		string s;
  		ll x;
  		cin>>s>>x;
  		unrepair.erase(mp2[s]);
  		repair.insert(mp2[s]);
  		pc+=x;
  	}
  }
}
0