結果

問題 No.1433 Two color sequence
ユーザー H20H20
提出日時 2021-03-19 21:56:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 621 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,976 KB
実行使用メモリ 104,412 KB
最終ジャッジ日時 2024-11-18 22:09:54
合計ジャッジ時間 3,652 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,296 KB
testcase_01 AC 34 ms
52,356 KB
testcase_02 AC 35 ms
52,528 KB
testcase_03 AC 80 ms
104,408 KB
testcase_04 AC 79 ms
104,196 KB
testcase_05 AC 34 ms
53,688 KB
testcase_06 AC 37 ms
53,016 KB
testcase_07 AC 35 ms
52,628 KB
testcase_08 AC 106 ms
103,848 KB
testcase_09 AC 107 ms
103,672 KB
testcase_10 AC 105 ms
102,796 KB
testcase_11 AC 108 ms
103,348 KB
testcase_12 AC 108 ms
103,948 KB
testcase_13 AC 110 ms
103,440 KB
testcase_14 AC 107 ms
103,908 KB
testcase_15 AC 107 ms
103,764 KB
testcase_16 AC 104 ms
103,536 KB
testcase_17 AC 110 ms
103,792 KB
testcase_18 AC 106 ms
103,540 KB
testcase_19 AC 106 ms
103,764 KB
testcase_20 AC 106 ms
103,536 KB
testcase_21 AC 107 ms
104,152 KB
testcase_22 AC 107 ms
104,412 KB
testcase_23 AC 106 ms
103,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def maxSum(arr):

  cur_max = glob_max = float('-inf')
  glob_start = glob_end = cur_start = -1

  for index, item in enumerate(arr):

    if item > cur_max + item:
      cur_max = item
      cur_start = index
    else:
      cur_max += item

    if cur_max > glob_max:
      glob_max = cur_max
      glob_start = cur_start
      glob_end = index
  return arr[glob_start:glob_end+1]

N = int(input())
S = input()
A = list(map(int, input().split())) 
R = [0]*N
B = [0]*N
for i in range(N):
    if S[i]=='R':
        A[i]=-A[i]
ans = sum(maxSum(A))
for i in range(N):
    A[i]=-A[i]
ans = max(ans,sum(maxSum(A)))
print(ans)
0