結果

問題 No.2591 安上がりな括弧列
ユーザー hirayuu_ychirayuu_yc
提出日時 2023-12-19 08:08:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 425 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 91,904 KB
最終ジャッジ日時 2024-09-27 08:40:14
合計ジャッジ時間 2,852 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 34 ms
51,968 KB
testcase_02 AC 36 ms
51,840 KB
testcase_03 AC 36 ms
51,712 KB
testcase_04 AC 35 ms
52,196 KB
testcase_05 AC 35 ms
51,840 KB
testcase_06 AC 34 ms
52,224 KB
testcase_07 AC 35 ms
52,096 KB
testcase_08 AC 43 ms
59,392 KB
testcase_09 AC 50 ms
60,800 KB
testcase_10 AC 46 ms
59,776 KB
testcase_11 AC 125 ms
91,520 KB
testcase_12 AC 114 ms
91,392 KB
testcase_13 AC 124 ms
91,660 KB
testcase_14 AC 120 ms
91,520 KB
testcase_15 AC 119 ms
91,468 KB
testcase_16 AC 119 ms
91,648 KB
testcase_17 AC 68 ms
71,296 KB
testcase_18 AC 99 ms
91,136 KB
testcase_19 AC 90 ms
87,552 KB
testcase_20 AC 122 ms
91,520 KB
testcase_21 AC 121 ms
91,904 KB
testcase_22 AC 122 ms
91,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF=pow(2,61)-1
N=int(input())
S=input()
A=list(map(int,input().split()))
dp=[[INF]*(N*2+2) for i in range(N*2+1)]
dp[0][0]=0
for i in range(N*2):
	for j in range(N*2+1):
		if dp[i][j]>=INF:
			continue
		if S[i]=="(":
			dp[i+1][j+1]=min(dp[i][j],dp[i+1][j+1])
			dp[i+1][j-1]=min(dp[i][j]+A[i],dp[i+1][j-1])
		else:
			dp[i+1][j+1]=min(dp[i][j]+A[i],dp[i+1][j+1])
			dp[i+1][j-1]=min(dp[i][j],dp[i+1][j-1])
print(dp[-1][0])
0