結果

問題 No.2031 Colored Brackets
ユーザー okkuukenkenokkuukenken
提出日時 2022-08-05 22:14:05
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 29 ms / 2,000 ms
コード長 819 bytes
コンパイル時間 1,365 ms
コンパイル使用メモリ 132,064 KB
実行使用メモリ 20,224 KB
最終ジャッジ日時 2024-09-15 19:13:44
合計ジャッジ時間 2,640 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 12 ms
11,264 KB
testcase_05 AC 7 ms
7,936 KB
testcase_06 AC 9 ms
9,216 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 15 ms
14,208 KB
testcase_09 AC 16 ms
16,256 KB
testcase_10 AC 21 ms
18,560 KB
testcase_11 AC 17 ms
16,128 KB
testcase_12 AC 22 ms
19,328 KB
testcase_13 AC 14 ms
13,696 KB
testcase_14 AC 23 ms
19,712 KB
testcase_15 AC 23 ms
19,840 KB
testcase_16 AC 23 ms
19,584 KB
testcase_17 AC 29 ms
20,224 KB
testcase_18 AC 15 ms
15,488 KB
testcase_19 AC 14 ms
14,208 KB
testcase_20 AC 11 ms
12,032 KB
testcase_21 AC 11 ms
12,160 KB
testcase_22 AC 12 ms
12,672 KB
testcase_23 AC 14 ms
15,232 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 4 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include<iostream>
#include<vector>
#include<algorithm>
#include<cmath>
#include<string>
#include<iomanip>
#include<numeric>
#include<queue>
#include<deque>
#include<stack>
#include<set>
#include<map>
#include<random>
#include<bitset>
#include<cassert>
using namespace std;
typedef long long ll;
const int mod=998244353;
const int dx[]={1,0,0,-1},dy[]={0,1,-1,0};
int dp[3001][1501];
int main(){
	int n;
	string s;
	cin>>n>>s;
	dp[0][0]=1;
	int nest=0;
	for(int i=0;i<n;i++){
		for(int na=0;na<=nest;na++){
			if(s[i]=='('){
				(dp[i+1][na+1]+=dp[i][na])%=mod;
				(dp[i+1][na]+=dp[i][na])%=mod;
			}else{
				if(na!=0)
					(dp[i+1][na-1]+=dp[i][na])%=mod;
				if(na!=nest)
					(dp[i+1][na]+=dp[i][na])%=mod;
			}
		}
		if(s[i]=='(')
			nest++;
		else
			nest--;
	}
	cout<<dp[n][0]<<endl;
}
0