結果

問題 No.1433 Two color sequence
ユーザー nephrologistnephrologist
提出日時 2021-03-19 22:05:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 575 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 114,348 KB
最終ジャッジ日時 2024-04-29 16:58:45
合計ジャッジ時間 3,578 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 35 ms
51,968 KB
testcase_03 AC 95 ms
106,824 KB
testcase_04 AC 97 ms
107,464 KB
testcase_05 AC 37 ms
51,584 KB
testcase_06 AC 37 ms
52,224 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 104 ms
114,348 KB
testcase_09 AC 109 ms
113,700 KB
testcase_10 AC 108 ms
112,448 KB
testcase_11 AC 111 ms
113,000 KB
testcase_12 AC 110 ms
113,576 KB
testcase_13 AC 108 ms
113,456 KB
testcase_14 AC 108 ms
113,456 KB
testcase_15 AC 107 ms
113,844 KB
testcase_16 AC 106 ms
113,452 KB
testcase_17 AC 111 ms
113,648 KB
testcase_18 AC 107 ms
113,584 KB
testcase_19 AC 105 ms
113,440 KB
testcase_20 AC 105 ms
113,852 KB
testcase_21 AC 106 ms
113,464 KB
testcase_22 AC 104 ms
113,464 KB
testcase_23 AC 104 ms
113,196 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