結果

問題 No.2591 安上がりな括弧列
ユーザー daiotadaiota
提出日時 2023-12-19 03:13:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 28 ms / 2,000 ms
コード長 884 bytes
コンパイル時間 1,580 ms
コンパイル使用メモリ 169,080 KB
実行使用メモリ 34,964 KB
最終ジャッジ日時 2024-09-27 08:36:25
合計ジャッジ時間 2,720 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 28 ms
34,964 KB
testcase_12 AC 28 ms
34,784 KB
testcase_13 AC 28 ms
34,888 KB
testcase_14 AC 27 ms
34,808 KB
testcase_15 AC 28 ms
34,848 KB
testcase_16 AC 28 ms
34,628 KB
testcase_17 AC 11 ms
19,012 KB
testcase_18 AC 16 ms
26,648 KB
testcase_19 AC 13 ms
23,544 KB
testcase_20 AC 28 ms
34,904 KB
testcase_21 AC 27 ms
34,940 KB
testcase_22 AC 27 ms
34,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef pair<ll,ll> P;
#define REP(i,n) for(ll i=0;i<ll(n);i++)


ll a[2010],c[2010];
ll dp[2010][2010];


int main(void){
	cin.tie(nullptr);  ios_base::sync_with_stdio(false);
	ll i,j;

	ll N;
	string S;
	cin >> N >> S;
	for(i=1;i<=2*N;i++) cin >> a[i];

	REP(i,2*N){
		if(S[i]=='(') c[i+1]=1;
		else c[i+1]=-1;
	}

	REP(i,2*N+1) REP(j,2*N+1) dp[i][j]=1e13;

	dp[0][0]=0;
	for(i=1;i<=2*N;i++){
		for(j=0;j<=2*N;j++){
			if(c[i]==1){
				if(j-1>=0 && dp[i-1][j-1]!=1e13) dp[i][j]=min(dp[i][j],dp[i-1][j-1]);
				if(j+1<=2*N && dp[i-1][j+1]!=1e13) dp[i][j]=min(dp[i][j],dp[i-1][j+1]+a[i]);

			}else{
				if(j-1>=0 && dp[i-1][j-1]!=1e13) dp[i][j]=min(dp[i][j],dp[i-1][j-1]+a[i]);
				if(j+1<=2*N && dp[i-1][j+1]!=1e13) dp[i][j]=min(dp[i][j],dp[i-1][j+1]);

			}
		}
	}


	cout << dp[2*N][0] << endl;


	return 0;
}
0