結果

問題 No.2623 Room Allocation
ユーザー manjuuu_onsenmanjuuu_onsen
提出日時 2024-02-09 21:40:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 473 bytes
コンパイル時間 1,475 ms
コンパイル使用メモリ 177,044 KB
実行使用メモリ 25,184 KB
最終ジャッジ日時 2024-09-28 14:55:26
合計ジャッジ時間 4,345 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 1 ms
6,820 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 50 ms
8,704 KB
testcase_07 AC 51 ms
8,664 KB
testcase_08 AC 53 ms
8,660 KB
testcase_09 AC 53 ms
8,704 KB
testcase_10 AC 42 ms
25,108 KB
testcase_11 AC 39 ms
25,104 KB
testcase_12 AC 19 ms
14,092 KB
testcase_13 AC 19 ms
14,168 KB
testcase_14 AC 135 ms
25,184 KB
testcase_15 AC 86 ms
6,820 KB
testcase_16 AC 22 ms
6,820 KB
testcase_17 AC 3 ms
6,820 KB
testcase_18 AC 84 ms
6,816 KB
testcase_19 AC 84 ms
6,816 KB
testcase_20 AC 91 ms
6,816 KB
testcase_21 AC 94 ms
6,816 KB
testcase_22 AC 68 ms
6,820 KB
testcase_23 AC 38 ms
6,816 KB
testcase_24 AC 88 ms
6,816 KB
testcase_25 AC 69 ms
6,820 KB
testcase_26 AC 7 ms
6,816 KB
testcase_27 AC 140 ms
19,608 KB
testcase_28 AC 60 ms
14,884 KB
testcase_29 AC 38 ms
14,348 KB
testcase_30 AC 132 ms
16,984 KB
testcase_31 AC 13 ms
6,912 KB
testcase_32 AC 34 ms
18,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;
using ll = long long;
using P = pair<ll,ll>;


int main()
{
	ll n,x,y;
	cin>>n>>x>>y;
	vector<vector<ll>> w(x+y,vector<ll>(2));
	for(ll i=0; i<n; i++) {
		ll p;
		char c;
		cin>>p>>c;
		w[i%(x+y)][c-'A'] += p;
	}

	sort(w.begin(), w.end(), [&](vector<ll>& x, vector<ll>&y){return x[0] - x[1] > y[0] - y[1];});
	ll ans = 0;
	for(ll i=0; i<x; i++) ans += w[i][0];
	for(ll j=x; j<x+y; j++) ans += w[j][1];
	cout << ans << endl;

}
0