結果

問題 No.2591 安上がりな括弧列
ユーザー H20H20
提出日時 2023-11-19 23:08:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,620 KB
実行使用メモリ 76,712 KB
最終ジャッジ日時 2024-09-27 08:30:50
合計ジャッジ時間 2,591 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,568 KB
testcase_01 AC 37 ms
53,144 KB
testcase_02 AC 39 ms
52,000 KB
testcase_03 AC 38 ms
52,004 KB
testcase_04 AC 37 ms
53,168 KB
testcase_05 AC 39 ms
52,128 KB
testcase_06 AC 38 ms
52,408 KB
testcase_07 AC 38 ms
52,956 KB
testcase_08 AC 42 ms
59,616 KB
testcase_09 AC 44 ms
62,332 KB
testcase_10 AC 43 ms
60,604 KB
testcase_11 AC 104 ms
76,532 KB
testcase_12 AC 97 ms
76,216 KB
testcase_13 AC 104 ms
76,712 KB
testcase_14 AC 98 ms
76,128 KB
testcase_15 AC 98 ms
76,532 KB
testcase_16 AC 92 ms
76,468 KB
testcase_17 AC 62 ms
73,208 KB
testcase_18 AC 74 ms
76,292 KB
testcase_19 AC 72 ms
76,044 KB
testcase_20 AC 99 ms
76,116 KB
testcase_21 AC 98 ms
76,292 KB
testcase_22 AC 94 ms
76,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = list(input())
A = list(map(int, input().split())) 
Left_cost = [0]*2*N
Right_cost = [0]*2*N
for i,(s,a) in enumerate(zip(S,A)):
    if s=='(':
        Right_cost[i]=a
    else:
        Left_cost[i]=a
inf = 10**18
DP = [inf]*2*N
DP[0]=0
for lc,rc in zip(Left_cost,Right_cost):
    NDP = [inf]*2*N
    for i in range(2*N):
        if i>0:
            NDP[i]=min(NDP[i],DP[i-1]+lc)
        if i<2*N-1:
            NDP[i]=min(NDP[i],DP[i+1]+rc)
    DP = NDP
print(DP[0])
0