結果

問題 No.2031 Colored Brackets
ユーザー ruthen71
提出日時 2022-08-05 22:19:08
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 12 ms / 2,000 ms
コード長 1,059 bytes
コンパイル時間 2,074 ms
コンパイル使用メモリ 196,156 KB
最終ジャッジ日時 2025-01-30 18:19:27
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#ifdef _RUTHEN
#include "debug.hpp"
#else
#define show(...) true
#endif

using ll = long long;
#define rep(i, n) for (int i = 0; i < (n); i++)
template <class T> using V = vector<T>;

#include <atcoder/modint>
using mint = atcoder::modint998244353;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    int N;
    cin >> N;
    string S;
    cin >> S;
    V<mint> dp(N);
    dp[0] = 1;
    int c = 0;
    rep(i, N) {
        V<mint> np(N);
        for (int j = 0; j < N; j++) {
            if (dp[j] == 0) continue;
            if (S[i] == '(') {
                np[j + 1] += dp[j];
                np[j] += dp[j];
            } else {
                if (j > 0) {
                    np[j - 1] += dp[j];
                }
                if (c - j > 0) {
                    np[j] += dp[j];
                }
            }
        }
        if (S[i] == '(') {
            c++;
        } else {
            c--;
        }
        swap(dp, np);
    }
    cout << dp[0].val() << '\n';
    return 0;
}
0