結果

問題 No.1433 Two color sequence
ユーザー wolgnikwolgnik
提出日時 2021-03-19 22:04:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 618 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 117,156 KB
最終ジャッジ日時 2024-11-18 22:27:47
合計ジャッジ時間 3,774 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,988 KB
testcase_01 AC 40 ms
52,632 KB
testcase_02 AC 39 ms
53,212 KB
testcase_03 AC 119 ms
110,044 KB
testcase_04 AC 112 ms
110,044 KB
testcase_05 AC 39 ms
52,524 KB
testcase_06 AC 38 ms
52,852 KB
testcase_07 AC 38 ms
52,556 KB
testcase_08 AC 117 ms
116,996 KB
testcase_09 AC 128 ms
116,660 KB
testcase_10 AC 126 ms
115,536 KB
testcase_11 AC 127 ms
115,860 KB
testcase_12 AC 128 ms
117,156 KB
testcase_13 AC 129 ms
116,908 KB
testcase_14 AC 126 ms
116,416 KB
testcase_15 AC 126 ms
116,532 KB
testcase_16 AC 125 ms
116,544 KB
testcase_17 AC 127 ms
117,060 KB
testcase_18 AC 127 ms
116,784 KB
testcase_19 AC 126 ms
116,420 KB
testcase_20 AC 124 ms
116,816 KB
testcase_21 AC 125 ms
116,764 KB
testcase_22 AC 124 ms
116,516 KB
testcase_23 AC 124 ms
116,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N = int(input())
S = list(input())[: -1]
a = list(map(int, input().split()))

scores = [0] * N
for i in range(N):
  if S[i] == "R": scores[i] += a[i]
  else: scores[i] -= a[i]
  if i + 1 < N: scores[i + 1] += scores[i]

inf = 10 ** 15
scmx = [-inf] * N
scmn = [inf] * N
for i in range(N - 1, -1, -1):
  scmx[i] = scores[i]
  scmn[i] = scores[i]
  if i + 1 < N:
    scmx[i] = max(scmx[i], scmx[i + 1])
    scmn[i] = min(scmn[i], scmn[i + 1])

res = abs(scores[-1])
for i in range(N):
  res = max(res, abs(scmx[i] - scores[i]))
  res = max(res, abs(scmn[i] - scores[i]))

print(res)
0