結果

問題 No.1433 Two color sequence
ユーザー kept1994kept1994
提出日時 2021-08-29 01:00:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,161 bytes
コンパイル時間 928 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 156,868 KB
最終ジャッジ日時 2024-11-22 01:14:47
合計ジャッジ時間 6,659 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 38 ms
51,712 KB
testcase_03 AC 146 ms
131,344 KB
testcase_04 AC 131 ms
131,456 KB
testcase_05 AC 39 ms
51,840 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 WA -
testcase_08 AC 161 ms
156,208 KB
testcase_09 WA -
testcase_10 AC 166 ms
155,280 KB
testcase_11 AC 167 ms
155,528 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 166 ms
156,232 KB
testcase_15 WA -
testcase_16 AC 166 ms
156,352 KB
testcase_17 WA -
testcase_18 AC 170 ms
156,232 KB
testcase_19 AC 169 ms
156,088 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 164 ms
156,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys

def main():
    import itertools 
    N = int(input())
    S = input()
    A = list(map(int, input().split()))
    RmB = []
    mRB = []
    for i in range(N):
        if S[i] == "B":
            RmB.append(-A[i])
            mRB.append(A[i])
        else:
            RmB.append(A[i])
            mRB.append(-A[i])
    sRmB = [0] + list(itertools.accumulate(RmB))
    smRB = [0] + list(itertools.accumulate(mRB))
    # print(RmB)
    # print(mRB)
    # print(sRmB)
    # print(smRB)
    minS = 10 ** 10
    maxS = -1 * 10 ** 10
    ans = -1 * 10 ** 10
    for i in range(N + 1):
        # print(sRmB[i], minS)
        if sRmB[i] <= minS:
            ans = max(ans, maxS - minS)
            minS = sRmB[i]
            maxS = -1 * 10 ** 10
        maxS = max(sRmB[i], maxS)
    ans = max(ans, maxS - minS)
    for i in range(N + 1):
        # print(smRB[i], minS)
        if smRB[i] <= minS:
            ans = max(ans, maxS - minS)
            minS = smRB[i]
            maxS = -1 * 10 ** 10
        maxS = max(smRB[i], maxS)
    ans = max(ans, maxS - minS)
    print(ans)





    return

if __name__ == '__main__':
    main()
0