結果

問題 No.2623 Room Allocation
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-02-14 13:51:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 778 bytes
コンパイル時間 2,393 ms
コンパイル使用メモリ 211,100 KB
実行使用メモリ 26,720 KB
最終ジャッジ日時 2024-09-28 18:54:12
合計ジャッジ時間 4,597 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 1 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 24 ms
9,100 KB
testcase_07 AC 24 ms
9,088 KB
testcase_08 AC 25 ms
9,088 KB
testcase_09 AC 25 ms
9,088 KB
testcase_10 AC 46 ms
26,688 KB
testcase_11 AC 44 ms
26,720 KB
testcase_12 AC 24 ms
14,944 KB
testcase_13 AC 24 ms
14,804 KB
testcase_14 AC 79 ms
26,700 KB
testcase_15 AC 27 ms
6,820 KB
testcase_16 AC 7 ms
6,816 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 26 ms
6,816 KB
testcase_19 AC 24 ms
6,816 KB
testcase_20 AC 27 ms
6,816 KB
testcase_21 AC 25 ms
6,820 KB
testcase_22 AC 21 ms
6,820 KB
testcase_23 AC 13 ms
6,816 KB
testcase_24 AC 27 ms
6,816 KB
testcase_25 AC 21 ms
6,816 KB
testcase_26 AC 3 ms
6,816 KB
testcase_27 AC 90 ms
20,744 KB
testcase_28 AC 41 ms
15,728 KB
testcase_29 AC 29 ms
15,156 KB
testcase_30 AC 81 ms
18,000 KB
testcase_31 AC 11 ms
7,168 KB
testcase_32 AC 33 ms
19,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
void fast_io() {
    ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
}

int main() {
    fast_io();
    int n, x, y;
    cin >> n >> x >> y;
    vector<vector<long long>> cnt(x + y, vector<long long>(2));
    for (int i = 0; i < n; i++) {
        int p;
        char c;
        cin >> p >> c;
        cnt[i % (x + y)][c - 'A'] += p;
    }
    vector<int> idx(x + y);
    iota(idx.begin(), idx.end(), 0);
    sort(idx.begin(), idx.end(), [&](int i, int j) {
        return cnt[i][0] - cnt[i][1] > cnt[j][0] - cnt[j][1];
    });
    long long ans = 0;
    for (int i = 0; i < x; i++) {
        ans += cnt[idx[i]][0];
    }
    for (int i = x; i < x + y; i++) {
        ans += cnt[idx[i]][1];
    }
    cout << ans << endl;
}
0