結果

問題 No.1433 Two color sequence
ユーザー kokatsukokatsu
提出日時 2021-11-18 20:58:31
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 579 bytes
コンパイル時間 1,800 ms
コンパイル使用メモリ 210,864 KB
実行使用メモリ 16,992 KB
最終ジャッジ日時 2024-06-22 13:18:21
合計ジャッジ時間 4,553 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 18 ms
12,264 KB
testcase_04 AC 17 ms
12,384 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 47 ms
15,960 KB
testcase_09 AC 45 ms
16,288 KB
testcase_10 AC 42 ms
15,264 KB
testcase_11 AC 41 ms
14,828 KB
testcase_12 AC 42 ms
16,160 KB
testcase_13 AC 42 ms
16,316 KB
testcase_14 AC 42 ms
16,088 KB
testcase_15 AC 41 ms
16,076 KB
testcase_16 AC 43 ms
16,192 KB
testcase_17 AC 41 ms
16,992 KB
testcase_18 AC 41 ms
16,224 KB
testcase_19 AC 40 ms
16,180 KB
testcase_20 AC 40 ms
16,264 KB
testcase_21 AC 43 ms
16,612 KB
testcase_22 AC 42 ms
16,140 KB
testcase_23 AC 44 ms
16,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main() {
    int N;
    readf("%d\n", N);

    string S = readln.chomp;

    auto a = readln.chomp.split.to!(long[]);

    long amax, amin;

    auto dpmax = new long[](N+1), dpmin = new long[](N+1);
    dpmax[0] = long.min / 2, dpmin[0] = long.max / 2;
    foreach (i, s; S) {
        if (s == 'B') {
            a[i] *= -1;
        }

        amax = max(amax+a[i], a[i]), amin = min(amin+a[i], a[i]);

        dpmax[i+1] = max(dpmax[i], amax);
        dpmin[i+1] = min(dpmin[i], amin);
    }

    long res = max(dpmax[N].abs, dpmin[N].abs);
    res.writeln;
}
0