結果

問題 No.2591 安上がりな括弧列
ユーザー lloyzlloyz
提出日時 2024-01-04 00:42:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 667 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 107,852 KB
最終ジャッジ日時 2024-09-27 18:32:36
合計ジャッジ時間 3,216 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,700 KB
testcase_01 AC 39 ms
52,616 KB
testcase_02 AC 39 ms
53,132 KB
testcase_03 AC 39 ms
53,372 KB
testcase_04 AC 39 ms
52,400 KB
testcase_05 AC 39 ms
53,080 KB
testcase_06 AC 39 ms
52,888 KB
testcase_07 AC 39 ms
53,132 KB
testcase_08 AC 47 ms
60,500 KB
testcase_09 AC 49 ms
61,936 KB
testcase_10 AC 48 ms
61,264 KB
testcase_11 AC 146 ms
107,852 KB
testcase_12 AC 143 ms
107,612 KB
testcase_13 AC 150 ms
107,624 KB
testcase_14 AC 144 ms
107,668 KB
testcase_15 AC 146 ms
107,752 KB
testcase_16 AC 143 ms
107,388 KB
testcase_17 AC 70 ms
74,352 KB
testcase_18 AC 101 ms
89,364 KB
testcase_19 AC 94 ms
87,164 KB
testcase_20 AC 145 ms
107,252 KB
testcase_21 AC 150 ms
107,496 KB
testcase_22 AC 146 ms
107,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
S = input()
A = list(map(int, input().split()))

INF = 10**18
DP = [[INF for _ in range(2 * n + 1)] for _ in range(2 * n + 1)]
DP[0][0] = 0
for i in range(2 * n):
    s = S[i]
    for j in range(2 * n + 1):
        if DP[i][j] != INF:
            if s == '(':
                DP[i + 1][j + 1] = min(DP[i + 1][j + 1], DP[i][j])
                if j - 1 >= 0:
                    DP[i + 1][j - 1] = min(DP[i + 1][j - 1], DP[i][j] + A[i])
            else:
                DP[i + 1][j + 1] = min(DP[i + 1][j + 1], DP[i][j] + A[i])
                if j - 1 >= 0:
                    DP[i + 1][j - 1] = min(DP[i + 1][j - 1], DP[i][j])
print(DP[2 * n][0])
0