結果

問題 No.2623 Room Allocation
ユーザー AngrySadEightAngrySadEight
提出日時 2023-12-28 17:38:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 982 bytes
コンパイル時間 842 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 6,676 KB
最終ジャッジ日時 2023-12-28 20:38:44
合計ジャッジ時間 4,905 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,676 KB
testcase_01 AC 2 ms
6,676 KB
testcase_02 AC 1 ms
6,676 KB
testcase_03 AC 2 ms
6,676 KB
testcase_04 AC 2 ms
6,676 KB
testcase_05 RE -
testcase_06 AC 49 ms
6,676 KB
testcase_07 AC 49 ms
6,676 KB
testcase_08 AC 49 ms
6,676 KB
testcase_09 AC 49 ms
6,676 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cassert>
#include <iostream>
#include <vector>
using namespace std;

int main() {
    int N, X, Y;
    cin >> N >> X >> Y;
    assert(N >= 1 && N <= 200000);
    assert(X >= 0 && X <= 200000);
    assert(Y >= 0 && Y <= 200000);
    assert(X + Y >= 1);
    vector<int> P(N);
    vector<char> c(N);
    int all_people = 0;
    for (int i = 0; i < N; i++) {
        cin >> P[i] >> c[i];
        assert(P[i] >= 1 && P[i] <= 10);
        assert(c[i] == 'A' || c[i] == 'B');
        all_people += P[i];
    }
    vector<int> groups(X + Y, 0);
    for (int i = 0; i < N; i++) {
        if (c[i] == 'A') {
            groups[i % (X + Y)] += P[i];
        } else {
            groups[i % (X + Y)] -= P[i];
        }
    }
    sort(groups.begin(), groups.end());
    int ans = 0;
    for (int i = 0; i < Y; i++) {
        ans -= groups[i];
    }
    for (int i = Y; i < X + Y; i++) {
        ans += groups[i];
    }
    cout << (ans + all_people) / 2 << endl;
}
0