結果

問題 No.2623 Room Allocation
ユーザー Today03Today03
提出日時 2024-02-09 22:26:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 908 bytes
コンパイル時間 2,535 ms
コンパイル使用メモリ 215,276 KB
実行使用メモリ 36,460 KB
最終ジャッジ日時 2024-09-28 15:41:09
合計ジャッジ時間 5,586 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 56 ms
12,496 KB
testcase_07 AC 74 ms
12,492 KB
testcase_08 AC 72 ms
12,496 KB
testcase_09 AC 71 ms
12,496 KB
testcase_10 AC 115 ms
33,512 KB
testcase_11 AC 52 ms
34,316 KB
testcase_12 AC 29 ms
18,576 KB
testcase_13 AC 56 ms
19,344 KB
testcase_14 AC 171 ms
36,460 KB
testcase_15 AC 93 ms
6,820 KB
testcase_16 AC 23 ms
6,820 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 88 ms
6,820 KB
testcase_19 AC 82 ms
6,820 KB
testcase_20 AC 86 ms
6,820 KB
testcase_21 AC 91 ms
6,820 KB
testcase_22 AC 70 ms
6,820 KB
testcase_23 AC 41 ms
6,820 KB
testcase_24 AC 88 ms
6,816 KB
testcase_25 AC 71 ms
6,820 KB
testcase_26 AC 9 ms
6,820 KB
testcase_27 AC 152 ms
31,056 KB
testcase_28 AC 73 ms
21,444 KB
testcase_29 AC 49 ms
19,640 KB
testcase_30 AC 142 ms
24,036 KB
testcase_31 AC 25 ms
9,256 KB
testcase_32 AC 86 ms
27,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#ifdef LOCAL
#include "./debug.cpp"
#else
#define debug(...)
#define print_line
#endif
using namespace std;
using ll = long long;

int main() {
    int N, X, Y;
    cin >> N >> X >> Y;
    int Z = X + Y;

    vector<int> P(N), C(N);
    for (int i = 0; i < N; i++) {
        char c;
        cin >> P[i] >> c;
        C[i] = c == 'B';
    }

    vector<vector<ll>> profit(Z, vector<ll>(2));
    for (int i = 0; i < N; i++) profit[i % Z][C[i]] += P[i];
    debug(profit);

    vector<pair<ll, int>> v;
    for (int i = 0; i < Z; i++) v.push_back(make_pair(profit[i][0] - profit[i][1], i));
    sort(v.rbegin(), v.rend());
    debug(v);

    ll ans = 0;
    for (int i = 0; i < X; i++) {
        int idx = v[i].second;
        ans += profit[idx][0];
    }
    for (int i = X; i < Z; i++) {
        int idx = v[i].second;
        ans += profit[idx][1];
    }

    cout << ans << endl;
}
0