結果

問題 No.2591 安上がりな括弧列
ユーザー ニックネームニックネーム
提出日時 2023-12-25 17:24:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 292 bytes
コンパイル時間 593 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 76,408 KB
最終ジャッジ日時 2024-09-27 14:33:37
合計ジャッジ時間 2,868 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,540 KB
testcase_01 AC 37 ms
52,272 KB
testcase_02 AC 38 ms
53,636 KB
testcase_03 AC 38 ms
52,888 KB
testcase_04 AC 38 ms
52,504 KB
testcase_05 AC 37 ms
52,852 KB
testcase_06 AC 37 ms
52,488 KB
testcase_07 AC 37 ms
52,304 KB
testcase_08 AC 38 ms
53,224 KB
testcase_09 AC 52 ms
63,640 KB
testcase_10 AC 47 ms
62,760 KB
testcase_11 AC 94 ms
76,100 KB
testcase_12 AC 110 ms
76,140 KB
testcase_13 AC 104 ms
76,180 KB
testcase_14 AC 118 ms
76,284 KB
testcase_15 AC 122 ms
76,256 KB
testcase_16 AC 115 ms
75,972 KB
testcase_17 AC 72 ms
70,792 KB
testcase_18 AC 87 ms
75,952 KB
testcase_19 AC 80 ms
74,312 KB
testcase_20 AC 125 ms
76,408 KB
testcase_21 AC 113 ms
76,108 KB
testcase_22 AC 119 ms
76,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()
a = list(map(int,input().split()))
dp = [0]+[10**12]*n
for i,(t,v) in enumerate(zip(s,a)):
    eq = [10**12]*(n+1)
    for i in range(n): eq[i+1] = min(eq[i+1],dp[i]+v*(t==")"))
    for i in range(n): eq[i] = min(eq[i],dp[i+1]+v*(t=="("))
    dp = eq
print(dp[0])
0