結果

問題 No.1433 Two color sequence
ユーザー convexineqconvexineq
提出日時 2021-03-19 21:55:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 370 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 108,808 KB
最終ジャッジ日時 2024-11-18 22:07:51
合計ジャッジ時間 3,811 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,156 KB
testcase_01 AC 41 ms
53,372 KB
testcase_02 AC 40 ms
52,236 KB
testcase_03 AC 98 ms
108,576 KB
testcase_04 AC 98 ms
108,808 KB
testcase_05 AC 40 ms
53,780 KB
testcase_06 AC 41 ms
52,128 KB
testcase_07 AC 40 ms
53,688 KB
testcase_08 AC 114 ms
103,840 KB
testcase_09 AC 123 ms
103,260 KB
testcase_10 AC 120 ms
103,100 KB
testcase_11 AC 121 ms
103,284 KB
testcase_12 AC 123 ms
103,500 KB
testcase_13 AC 123 ms
103,920 KB
testcase_14 AC 123 ms
103,884 KB
testcase_15 AC 121 ms
103,892 KB
testcase_16 AC 122 ms
104,140 KB
testcase_17 AC 126 ms
103,996 KB
testcase_18 AC 123 ms
104,248 KB
testcase_19 AC 122 ms
103,608 KB
testcase_20 AC 122 ms
103,504 KB
testcase_21 AC 123 ms
103,876 KB
testcase_22 AC 121 ms
103,480 KB
testcase_23 AC 123 ms
103,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Kadane(a):
   v = -1<<60 # i を右端とする区間和のmax
   m = -1<<60 # max(v0,...,vi)
   for ai in a:
       v = max(v+ai,ai)
       m = max(m,v)
   return m

n = int(input())
s = input()
*a, = map(int,input().split())
for i in range(n):
    if s[i]=="B": a[i] = -a[i]
x = abs(Kadane(a))
for i in range(n):
    a[i] = -a[i]
y = abs(Kadane(a))
print(max(x,y))
0