結果

問題 No.2623 Room Allocation
ユーザー miiitomimiiitomi
提出日時 2024-02-09 22:13:56
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 842 bytes
コンパイル時間 2,234 ms
コンパイル使用メモリ 208,632 KB
実行使用メモリ 11,076 KB
最終ジャッジ日時 2024-09-28 15:29:32
合計ジャッジ時間 4,053 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

void solve() {
    ll N, X, Y, M;
    cin >> N >> X >> Y;
    M = X+Y;
    vector<ll> A(M, 0), B(M, 0);
    for (int i = 0; i < N; i++) {
        ll p;
        char c;
        cin >> p >> c;
        if (c == 'A') A[i % M] += p;
        else B[i % M] += p;
    }
    vector<int> v(M);
    for (int i = 0; i < M; i++) v[i] = i;
    auto cmp = [&](const int &l, const int &r) {
        return A[l] - B[l] > A[r] - B[r];
    };
    sort(v.begin(), v.end(), cmp);
    ll ans = 0;
    for (int i = 0; i < M; i++) {
        if (i < X) ans += A[v[i]];
        else ans += B[v[i]];
    }
    cout << ans << "\n";
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cout << fixed << setprecision(15);
    int T = 1;
    // cin >> T;
    while (T--) solve();
}
0