結果

問題 No.2031 Colored Brackets
ユーザー nononnonon
提出日時 2024-05-05 02:49:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,223 bytes
コンパイル時間 678 ms
コンパイル使用メモリ 75,844 KB
実行使用メモリ 27,904 KB
最終ジャッジ日時 2024-05-05 02:49:22
合計ジャッジ時間 4,596 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
27,904 KB
testcase_01 AC 22 ms
21,088 KB
testcase_02 AC 30 ms
21,084 KB
testcase_03 AC 60 ms
20,960 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
#include<iostream>
using namespace std;
constexpr int mod=998244353;
int N;
string S;
int dp[1501][1501],ep[1501][1501];
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cin>>N>>S;
    dp[0][0]=1;
    for(int i=1;i<=N;i++)
    {
        for(int j=0;j<=i;j++)for(int k=0;k<=i;k++)ep[j][k]=0;
        for(int j=0;j<=i;j++)for(int k=0;k<=i;k++)
        {
            if(S[i-1]=='(')
            {
                if(j)
                {
                    ep[j][k]+=dp[j-1][k];
                    if(ep[j][k]>=mod)ep[j][k]-=mod;
                }
                if(k)
                {
                    ep[j][k]+=dp[j][k-1];
                    if(ep[j][k]>=mod)ep[j][k]-=mod;
                }
            }
            else
            {
                if(j)
                {
                    ep[j-1][k]+=dp[j][k];
                    if(ep[j-1][k]>=mod)ep[j-1][k]-=mod;
                }
                if(k)
                {
                    ep[j][k-1]+=dp[j][k];
                    if(ep[j][k-1]>=mod)ep[j][k-1]-=mod;
                }
            }
        }
        swap(dp,ep);
    }
    cout<<dp[0][0]<<'\n';
}
0