結果

問題 No.2591 安上がりな括弧列
ユーザー 👑 rin204rin204
提出日時 2023-12-19 20:56:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 385 bytes
コンパイル時間 487 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 76,444 KB
最終ジャッジ日時 2024-09-27 09:00:09
合計ジャッジ時間 2,780 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,100 KB
testcase_01 AC 37 ms
52,324 KB
testcase_02 AC 36 ms
52,868 KB
testcase_03 AC 36 ms
52,308 KB
testcase_04 AC 37 ms
54,112 KB
testcase_05 AC 36 ms
52,900 KB
testcase_06 AC 38 ms
52,888 KB
testcase_07 AC 36 ms
52,332 KB
testcase_08 AC 39 ms
52,144 KB
testcase_09 AC 46 ms
60,616 KB
testcase_10 AC 45 ms
61,676 KB
testcase_11 AC 81 ms
76,356 KB
testcase_12 AC 73 ms
76,140 KB
testcase_13 AC 82 ms
76,444 KB
testcase_14 AC 78 ms
76,104 KB
testcase_15 AC 81 ms
76,088 KB
testcase_16 AC 78 ms
76,116 KB
testcase_17 AC 59 ms
67,464 KB
testcase_18 AC 66 ms
73,084 KB
testcase_19 AC 61 ms
69,528 KB
testcase_20 AC 82 ms
76,056 KB
testcase_21 AC 76 ms
76,216 KB
testcase_22 AC 78 ms
75,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
S = input()
A = list(map(int, input().split()))
inf = 1 << 60
dp = [inf] * (n + 1)
dp[0] = 0
for s, a in zip(S, A):
    if s == "(":
        u = 0
        d = a
    else:
        u = a
        d = 0

    ndp = [inf] * (n + 1)
    for i in range(n):
        ndp[i] = min(ndp[i], dp[i + 1] + d)
        ndp[i + 1] = min(ndp[i + 1], dp[i] + u)
    dp = ndp

print(dp[0])
0