結果

問題 No.1433 Two color sequence
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-04-05 13:06:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 641 bytes
コンパイル時間 876 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 170,336 KB
最終ジャッジ日時 2024-06-09 20:08:36
合計ジャッジ時間 5,434 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 36 ms
52,192 KB
testcase_03 AC 150 ms
162,864 KB
testcase_04 AC 150 ms
162,620 KB
testcase_05 AC 36 ms
51,840 KB
testcase_06 AC 37 ms
52,480 KB
testcase_07 AC 36 ms
51,968 KB
testcase_08 AC 154 ms
170,336 KB
testcase_09 AC 174 ms
169,204 KB
testcase_10 AC 166 ms
167,936 KB
testcase_11 AC 165 ms
168,524 KB
testcase_12 AC 169 ms
170,100 KB
testcase_13 AC 169 ms
169,476 KB
testcase_14 AC 167 ms
169,724 KB
testcase_15 AC 163 ms
169,712 KB
testcase_16 AC 163 ms
169,084 KB
testcase_17 AC 168 ms
169,596 KB
testcase_18 AC 163 ms
169,416 KB
testcase_19 AC 167 ms
169,468 KB
testcase_20 AC 165 ms
169,344 KB
testcase_21 AC 164 ms
169,736 KB
testcase_22 AC 165 ms
169,480 KB
testcase_23 AC 168 ms
169,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main1(n,s,a):
    ans=-float('inf')
    """
    |R-B|=max(R-B,B-R)
    """
    b=[ai if si=='R' else -ai for ai,si in zip(a,s)]
    # bの連続部分列和の最大
    sb=[0]
    for x in b:sb.append(sb[-1]+x)
    m=0
    for x in sb[1:]:
        ans=max(ans,x-m)
        m=min(m,x)
    b=[-ai if si=='R' else ai for ai,si in zip(a,s)]
    # bの連続部分列和の最大
    sb=[0]
    for x in b:sb.append(sb[-1]+x)
    m=0
    for x in sb[1:]:
        ans=max(ans,x-m)
        m=min(m,x)
    return ans

if __name__=='__main__':
    n=int(input())
    s=list(input())
    a=list(map(int,input().split()))
    print(main1(n,s,a))
0