結果

問題 No.2031 Colored Brackets
ユーザー umezoumezo
提出日時 2022-08-06 23:39:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 783 bytes
コンパイル時間 2,316 ms
コンパイル使用メモリ 202,620 KB
実行使用メモリ 53,760 KB
最終ジャッジ日時 2024-09-16 17:22:06
合計ジャッジ時間 4,739 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 29 ms
21,632 KB
testcase_05 AC 14 ms
12,032 KB
testcase_06 AC 20 ms
15,360 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 45 ms
32,000 KB
testcase_09 AC 59 ms
40,192 KB
testcase_10 AC 70 ms
46,592 KB
testcase_11 AC 57 ms
39,296 KB
testcase_12 AC 73 ms
48,640 KB
testcase_13 AC 41 ms
29,568 KB
testcase_14 AC 76 ms
49,408 KB
testcase_15 AC 76 ms
49,408 KB
testcase_16 AC 76 ms
49,280 KB
testcase_17 AC 82 ms
53,760 KB
testcase_18 AC 67 ms
44,800 KB
testcase_19 AC 59 ms
40,704 KB
testcase_20 AC 41 ms
29,568 KB
testcase_21 AC 43 ms
30,720 KB
testcase_22 AC 48 ms
33,152 KB
testcase_23 AC 65 ms
43,520 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 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 4 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;

#include <bits/stdc++.h>
using namespace std;

ll dp[3030][3030];
const int MOD=998244353;

int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  int n;
  string s;
  cin>>n>>s;
  dp[0][0]=1;
  vector<int> S(n+1);
  rep(i,n){
    if(s[i]=='(') S[i+1]=S[i]+1;
    else S[i+1]=S[i]-1;
  }
  rep(i,n){
    rep(j,n+1){
      if(s[i]=='('){
        if(j+1<=S[i+1]) dp[i+1][j+1]=(dp[i+1][j+1]+dp[i][j])%MOD;
        if(S[i+1]-j>=0) dp[i+1][j]=(dp[i+1][j]+dp[i][j])%MOD;
      }
      else{
        if(j-1>=0) dp[i+1][j-1]=(dp[i+1][j-1]+dp[i][j])%MOD;
        if(S[i+1]-j>=0) dp[i+1][j]=(dp[i+1][j]+dp[i][j])%MOD;
      }
    }
  }
  cout<<dp[n][0]<<endl;

  return 0;
}
0