結果

問題 No.2804 Fixer And Ratism
ユーザー 沙耶花沙耶花
提出日時 2024-07-12 21:12:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 224 ms / 2,000 ms
コード長 1,086 bytes
コンパイル時間 5,219 ms
コンパイル使用メモリ 283,976 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-12 21:12:35
合計ジャッジ時間 9,582 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 68 ms
6,940 KB
testcase_04 AC 36 ms
6,940 KB
testcase_05 AC 14 ms
6,940 KB
testcase_06 AC 71 ms
6,944 KB
testcase_07 AC 25 ms
6,940 KB
testcase_08 AC 25 ms
6,940 KB
testcase_09 AC 8 ms
6,944 KB
testcase_10 AC 20 ms
6,940 KB
testcase_11 AC 130 ms
6,940 KB
testcase_12 AC 68 ms
6,940 KB
testcase_13 AC 24 ms
6,940 KB
testcase_14 AC 64 ms
6,940 KB
testcase_15 AC 8 ms
6,940 KB
testcase_16 AC 61 ms
6,940 KB
testcase_17 AC 39 ms
6,940 KB
testcase_18 AC 100 ms
6,940 KB
testcase_19 AC 5 ms
6,940 KB
testcase_20 AC 9 ms
6,940 KB
testcase_21 AC 160 ms
6,944 KB
testcase_22 AC 4 ms
6,944 KB
testcase_23 AC 216 ms
6,944 KB
testcase_24 AC 140 ms
6,944 KB
testcase_25 AC 224 ms
6,944 KB
testcase_26 AC 157 ms
6,944 KB
testcase_27 AC 138 ms
6,944 KB
testcase_28 AC 224 ms
6,940 KB
testcase_29 AC 155 ms
6,940 KB
testcase_30 AC 159 ms
6,940 KB
testcase_31 AC 139 ms
6,940 KB
testcase_32 AC 186 ms
6,940 KB
testcase_33 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000001
int main(){

	int N,Q;
	cin>>N>>Q;
	
	vector<vector<pair<int,string>>> P(2);
	vector<string> ans;
	rep(i,Q){
		int t;
		cin>>t;
		if(t==1){
			string S;
			int R;
			cin>>S>>R;
			P[0].emplace_back(R,S);
			sort(P[0].rbegin(),P[0].rend());
		}
		if(t==2){
			int x;
			cin>>x;
			N -= x;
		}
		if(t==3){
			int x;
			string s;
			cin>>s>>x;
			N += x;
			rep(j,P[0].size()){
				if(P[0][j].second == s){
					P[1].push_back(P[0][j]);
					P[0].erase(P[0].begin()+j);
					break;
				}
			}
			sort(P[1].rbegin(),P[1].rend());
		}
		vector<pair<int,string>> tt;
		while(P[0].size()+P[1].size()>N){
			if(P[0].size()>0){
				tt.push_back(P[0].back());
				P[0].pop_back();
			}
			else{
				tt.push_back(P[1].back());
				P[1].pop_back();
			}
		}
		sort(tt.begin(),tt.end());
		rep(j,tt.size())cout<<tt[j].second<<endl;
	}
	
	return 0;
}
0