結果

問題 No.2804 Fixer And Ratism
ユーザー AerenAeren
提出日時 2024-07-12 21:23:04
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,559 bytes
コンパイル時間 3,554 ms
コンパイル使用メモリ 276,380 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-12 21:23:34
合計ジャッジ時間 18,944 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 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 52 ms
5,376 KB
testcase_10 WA -
testcase_11 AC 1,235 ms
5,376 KB
testcase_12 WA -
testcase_13 AC 228 ms
5,376 KB
testcase_14 AC 200 ms
5,376 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 326 ms
5,376 KB
testcase_18 WA -
testcase_19 AC 29 ms
5,376 KB
testcase_20 WA -
testcase_21 AC 1,451 ms
5,376 KB
testcase_22 WA -
testcase_23 AC 1,839 ms
5,376 KB
testcase_24 WA -
testcase_25 TLE -
testcase_26 WA -
testcase_27 WA -
testcase_28 TLE -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 1,218 ms
5,376 KB
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

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> contributed;
	map<int, string, greater<>> name_by_rating;
	vector<string> res;
	for(auto qi = 0; qi < qn; ++ qi){
		int type;
		cin >> type;
		if(type == 1){
			string name;
			int r;
			cin >> name >> r;
			name_by_rating[r] = name;
		}
		else if(type == 2){
			int x;
			cin >> x;
			computer -= x;
		}
		else{
			string s;
			int x;
			cin >> s >> x;
			contributed.insert(s);
			computer += x;
		}
		static vector<pair<int, string>> left;
		left.clear();
		int rem = computer;
		for(auto [r, s]: name_by_rating){
			if(contributed.contains(s)){
				if(!rem){
					left.push_back({r, s});
				}
				else{
					-- rem;
				}
			}
		}
		for(auto [r, s]: name_by_rating){
			if(!contributed.contains(s)){
				if(!rem){
					left.push_back({r, s});
				}
				else{
					-- rem;
				}
			}
		}
		for(auto [r, s]: left | ranges::views::reverse){
			name_by_rating.erase(r);
			res.push_back(s);
		}
	}
	ranges::copy(res, ostream_iterator<string>(cout, "\n"));
	return 0;
}

/*

*/
0