結果

問題 No.1433 Two color sequence
ユーザー nephrologistnephrologist
提出日時 2021-03-19 22:05:20
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 575 bytes
コンパイル時間 498 ms
コンパイル使用メモリ 87,068 KB
実行使用メモリ 116,416 KB
最終ジャッジ日時 2023-08-12 02:18:26
合計ジャッジ時間 5,401 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,356 KB
testcase_01 AC 71 ms
71,480 KB
testcase_02 AC 71 ms
71,376 KB
testcase_03 AC 130 ms
108,304 KB
testcase_04 AC 130 ms
108,252 KB
testcase_05 AC 70 ms
71,560 KB
testcase_06 AC 71 ms
71,556 KB
testcase_07 AC 70 ms
71,364 KB
testcase_08 AC 136 ms
116,416 KB
testcase_09 AC 145 ms
115,612 KB
testcase_10 AC 142 ms
114,676 KB
testcase_11 AC 147 ms
114,884 KB
testcase_12 AC 146 ms
115,692 KB
testcase_13 AC 145 ms
115,744 KB
testcase_14 AC 145 ms
116,088 KB
testcase_15 AC 144 ms
116,140 KB
testcase_16 AC 143 ms
116,276 KB
testcase_17 AC 148 ms
116,176 KB
testcase_18 AC 145 ms
116,236 KB
testcase_19 AC 142 ms
116,008 KB
testcase_20 AC 142 ms
116,356 KB
testcase_21 AC 142 ms
116,204 KB
testcase_22 AC 143 ms
116,000 KB
testcase_23 AC 142 ms
116,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = list(input())
A = list(map(int, input().split()))

for i in range(n):
    if s[i] == "R":
        continue
    else:
        A[i] *= -1

cumA = [0] * (n + 1)

for i in range(n):
    cumA[i + 1] = A[i] + cumA[i]

plus = 0
minus = 0
pre_plus = 0
pre_minus = 0
for i in range(1, n + 1):
    score_plus = cumA[i] - cumA[pre_plus]
    score_minus = cumA[i] - cumA[pre_minus]
    if score_plus < 0:
        pre_plus = i
    if score_minus > 0:
        pre_minus = i
    plus = max(plus, score_plus)
    minus = min(minus, score_minus)
print(max(plus, -minus))
0