結果

問題 No.2623 Room Allocation
ユーザー norikamenorikame
提出日時 2024-02-09 22:00:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 927 bytes
コンパイル時間 3,931 ms
コンパイル使用メモリ 267,656 KB
実行使用メモリ 28,308 KB
最終ジャッジ日時 2024-09-28 15:15:27
合計ジャッジ時間 6,793 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 55 ms
10,624 KB
testcase_07 AC 55 ms
10,624 KB
testcase_08 AC 54 ms
10,624 KB
testcase_09 AC 55 ms
10,752 KB
testcase_10 AC 45 ms
26,812 KB
testcase_11 AC 43 ms
26,632 KB
testcase_12 AC 20 ms
14,968 KB
testcase_13 AC 22 ms
15,064 KB
testcase_14 AC 143 ms
28,308 KB
testcase_15 AC 86 ms
6,816 KB
testcase_16 AC 23 ms
6,820 KB
testcase_17 AC 2 ms
6,820 KB
testcase_18 AC 89 ms
6,816 KB
testcase_19 AC 83 ms
6,820 KB
testcase_20 AC 86 ms
6,816 KB
testcase_21 AC 85 ms
6,816 KB
testcase_22 AC 65 ms
6,816 KB
testcase_23 AC 38 ms
6,816 KB
testcase_24 AC 88 ms
6,820 KB
testcase_25 AC 71 ms
6,816 KB
testcase_26 AC 8 ms
6,816 KB
testcase_27 AC 156 ms
22,320 KB
testcase_28 AC 63 ms
16,472 KB
testcase_29 AC 41 ms
15,452 KB
testcase_30 AC 152 ms
19,656 KB
testcase_31 AC 14 ms
7,424 KB
testcase_32 AC 38 ms
19,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// 

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;

using ll = long long;

#define rep(i, n) for (int i=0; i<(int)(n); ++(i))
#define rep3(i, m, n) for (int i=(m); (i)<(int)(n); ++(i))
#define repr(i, n) for (int i=(int)(n)-1; (i)>=0; --(i))
#define rep3r(i, m, n) for (int i=(int)(n)-1; (i)>=(int)(m); --(i))
#define all(x) (x).begin(), (x).end()

const int INF = (int)(1e9);

int main() {
	int n, x, y;
	cin >> n >> x >> y;
	vector<int> p(n), c(n);
	rep(i, n) {
		char ci;
		cin >> p[i] >> ci;
		c[i] = ci - 'A';
	}
	int m = x + y;
	vector<vector<ll>> ab(m, vector<ll>(2));
	rep(i, n) ab[i%m][c[i]] += p[i];
	vector<int> ord(m);
	iota(all(ord), 0);
	sort(all(ord), [&](int li, int ri) -> bool { return ab[li][0]-ab[li][1] > ab[ri][0]-ab[ri][1]; });
	ll res = 0;
	rep(i, m) {
		if (i < x) res += ab[ord[i]][0];
		else res += ab[ord[i]][1];
	}
	cout << res << endl;
	return 0;
}
0