結果

問題 No.2591 安上がりな括弧列
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-01-04 14:24:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 621 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 91,888 KB
最終ジャッジ日時 2024-09-27 18:45:30
合計ジャッジ時間 3,060 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,228 KB
testcase_01 AC 38 ms
52,288 KB
testcase_02 AC 39 ms
53,132 KB
testcase_03 AC 39 ms
52,280 KB
testcase_04 AC 39 ms
52,704 KB
testcase_05 AC 39 ms
53,288 KB
testcase_06 AC 39 ms
53,344 KB
testcase_07 AC 38 ms
52,440 KB
testcase_08 AC 45 ms
60,412 KB
testcase_09 AC 49 ms
61,440 KB
testcase_10 AC 46 ms
61,784 KB
testcase_11 AC 119 ms
91,480 KB
testcase_12 AC 115 ms
91,484 KB
testcase_13 AC 123 ms
91,496 KB
testcase_14 AC 121 ms
91,752 KB
testcase_15 AC 120 ms
91,780 KB
testcase_16 AC 121 ms
91,672 KB
testcase_17 AC 66 ms
71,520 KB
testcase_18 AC 97 ms
91,600 KB
testcase_19 AC 88 ms
87,264 KB
testcase_20 AC 122 ms
91,888 KB
testcase_21 AC 121 ms
91,808 KB
testcase_22 AC 123 ms
91,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()
a = list(map(int, input().split()))

INF = 10 ** 18
dp = [[INF] * (2 * n + 1) for _ in range(2 * n + 1)]

dp[0][0] = 0

for i in range(2 * n):
    for j in range(2 * n + 1):
        if dp[i][j] == INF:
            continue
        if s[i] == '(':
            dp[i + 1][j + 1] = min(dp[i + 1][j + 1], dp[i][j])
            if j:
                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:
                dp[i + 1][j - 1] = min(dp[i + 1][j - 1], dp[i][j])

print(dp[2 * n][0])
0