結果

問題 No.2804 Fixer And Ratism
ユーザー AerenAeren
提出日時 2024-07-12 21:37:19
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,093 bytes
コンパイル時間 3,560 ms
コンパイル使用メモリ 271,016 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-12 21:37:33
合計ジャッジ時間 5,690 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

// #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;
	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)){
				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();
			}
		}
		else{
			while((int)contributed.size() > computer){
				res.push_back(contributed.back().second);
				contributed.pop_back();
			}
			while(!useless.empty()){
				res.push_back(useless.back().second);
				useless.pop_back();
			}
		}
	}
	ranges::copy(res, ostream_iterator<string>(cout, "\n"));
	return 0;
}

/*

*/
0