結果

問題 No.2804 Fixer And Ratism
ユーザー silv723silv723
提出日時 2024-07-05 10:53:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,367 bytes
コンパイル時間 2,929 ms
コンパイル使用メモリ 235,180 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-11 23:11:22
合計ジャッジ時間 6,782 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 WA -
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 76 ms
6,940 KB
testcase_12 WA -
testcase_13 AC 16 ms
6,944 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 97 ms
6,940 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 160 ms
6,940 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 160 ms
6,944 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
bool isok(string &s){
	for(auto c:s){
		if('a' > c || 'z' < c) return false;
	}
	return true;
}
int main(){
	int n, q;
	cin >> n >> q;
	assert(1 <= n && n <= 100);
	assert(1 <= q && q <= 100000);
	set<string> sv;
	set<pair<int, string>> s1, s2;
	map<string, int> rt;
	while(q--){
		int t;
		cin >> t;
		assert(1 <= t && t <= 3);
		if(t == 1){
			string s;
			int r;
			cin >> s >> r;
			assert(isok(s));
			assert(1 <= (int)s.size() && (int)s.size() <= 100);
			assert(0 <= r && r <= 4000);
			s2.insert({r, s});
			rt[s] = r;
			assert(!sv.count(s));
			sv.insert(s);
		}else if(t == 2){
			int x;
			cin >> x;
			assert(1 <= x && x <= 10);
			n -= x;
		}else if(t == 3){
			string s;
			int x;
			cin >> s >> x;
			assert(isok(s));
			assert(1 <= (int)s.size() && (int)s.size() <= 100);
			assert(1 <= x && x <= 10);
			n += x;
			assert(rt.count(s));
			int r = rt[s];
			s2.erase({r, s});
			s1.insert({r, s});
		}
		vector<string> ans;
		while((int)s2.size() + (int)s1.size() > n){
			if((int)s2.size() > 0){
				auto [p, q] = *s2.begin();
				s2.erase({p, q});
				rt.erase(q);
				ans.push_back(q);
			}else{
				auto [p, q] = *s1.begin();
				s1.erase({p, q});
				rt.erase(q);
				ans.push_back(q);
			}
		}
		sort(ans.begin(), ans.end());
		for(auto s:ans) cout << s << '\n';
	}
	assert((int)sv.size() <= 100);
}
0