結果

問題 No.2106 Wild Cacco
ユーザー ぷらぷら
提出日時 2022-10-21 21:52:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 266 ms / 2,000 ms
コード長 1,520 bytes
コンパイル時間 1,992 ms
コンパイル使用メモリ 204,092 KB
実行使用メモリ 142,688 KB
最終ジャッジ日時 2024-07-01 06:28:53
合計ジャッジ時間 6,783 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
7,492 KB
testcase_01 AC 2 ms
7,624 KB
testcase_02 AC 3 ms
7,624 KB
testcase_03 AC 3 ms
7,620 KB
testcase_04 AC 3 ms
7,496 KB
testcase_05 AC 3 ms
7,756 KB
testcase_06 AC 3 ms
7,916 KB
testcase_07 AC 3 ms
7,988 KB
testcase_08 AC 3 ms
8,136 KB
testcase_09 AC 3 ms
8,008 KB
testcase_10 AC 3 ms
7,752 KB
testcase_11 AC 85 ms
43,996 KB
testcase_12 AC 168 ms
101,744 KB
testcase_13 AC 219 ms
128,724 KB
testcase_14 AC 114 ms
61,080 KB
testcase_15 AC 123 ms
66,672 KB
testcase_16 AC 210 ms
120,208 KB
testcase_17 AC 150 ms
78,512 KB
testcase_18 AC 134 ms
70,820 KB
testcase_19 AC 146 ms
78,040 KB
testcase_20 AC 164 ms
93,820 KB
testcase_21 AC 172 ms
96,440 KB
testcase_22 AC 101 ms
47,752 KB
testcase_23 AC 60 ms
7,804 KB
testcase_24 AC 96 ms
41,432 KB
testcase_25 AC 112 ms
51,160 KB
testcase_26 AC 263 ms
141,228 KB
testcase_27 AC 254 ms
137,612 KB
testcase_28 AC 256 ms
138,864 KB
testcase_29 AC 3 ms
7,500 KB
testcase_30 AC 266 ms
142,688 KB
testcase_31 AC 76 ms
23,128 KB
testcase_32 AC 76 ms
23,300 KB
testcase_33 AC 266 ms
142,420 KB
testcase_34 AC 264 ms
140,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

constexpr int mod = 998244353;

void mpl(int &x,int y) {
    x += y;
    if(x >= mod) x -= mod;
}

int dp1[4040][4040],dp2[4040][4040],sum[4040][4040];

int main() {
    string s;
    cin >> s;
    dp1[0][0] = 1;
    for(int i = 0; i < s.size(); i++) {
        for(int j = 0; j < s.size(); j++) {
            if(!dp1[i][j]) continue;
            if(s[i] == '(' || s[i] == '.') {
                mpl(dp1[i+1][j+1],dp1[i][j]);
            }
            if((s[i] == ')' || s[i] == '.') && j >= 1) {
                mpl(dp1[i+1][j-1],dp1[i][j]);
            }
            if(s[i] == '?' || s[i] == '.') {
                mpl(dp1[i+1][j+1],dp1[i][j]);
            }
        }
    }
    dp2[0][0] = 1;
    for(int i = 0; i < s.size(); i++) {
        for(int j = 0; j < s.size(); j++) {
            if(!dp2[i][j]) continue;
            int id = s.size()-i-1;
            if(s[id] == ')' || s[id] == '.') {
                mpl(dp2[i+1][j+1],dp2[i][j]);
            }
            if((s[id] == '(' || s[id] == '.') && j >= 1) {
                mpl(dp2[i+1][j-1],dp2[i][j]);
            }
            if(s[id] == '?' || s[id] == '.') {
                mpl(dp2[i+1][j+1],dp2[i][j]);
                mpl(sum[i+1][j+1],dp2[i][j]);
            }
        }
    }
    mpl(sum[0][0],1);
    int ans = 0;
    for(int i = 0; i <= s.size(); i++) {
        for(int j = 0; j <= s.size(); j++) {
            mpl(ans,1ll*dp1[i][j]*sum[s.size()-i][j]%mod);
        }
    }
    cout << ans << endl;
}
0