結果
問題 | No.2031 Colored Brackets |
ユーザー | srjywrdnprkt |
提出日時 | 2023-05-13 05:06:47 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,098 bytes |
コンパイル時間 | 1,107 ms |
コンパイル使用メモリ | 113,796 KB |
実行使用メモリ | 157,896 KB |
最終ジャッジ日時 | 2024-11-29 00:29:24 |
合計ジャッジ時間 | 59,192 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,632 KB |
testcase_01 | AC | 2 ms
51,620 KB |
testcase_02 | AC | 2 ms
13,640 KB |
testcase_03 | AC | 2 ms
26,424 KB |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | AC | 2 ms
81,952 KB |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | AC | 2 ms
6,816 KB |
testcase_25 | AC | 2 ms
6,820 KB |
testcase_26 | AC | 2 ms
6,816 KB |
testcase_27 | AC | 2 ms
6,816 KB |
testcase_28 | AC | 2 ms
6,816 KB |
testcase_29 | AC | 2 ms
6,816 KB |
testcase_30 | AC | 2 ms
6,816 KB |
testcase_31 | AC | 53 ms
6,816 KB |
testcase_32 | AC | 1 ms
6,816 KB |
testcase_33 | AC | 38 ms
6,816 KB |
ソースコード
#include <iostream> #include <vector> #include <cmath> #include <map> #include <set> #include <iomanip> #include <queue> #include <algorithm> #include <numeric> #include <deque> #include <complex> #include <cassert> using namespace std; using ll = long long; const ll modc = 998244353; int main(){ ll N, cnt=0, k; string S; cin >> N >> S; vector<vector<ll>> dp(N, vector<ll>(N)); dp[0][0] = 1; for (int i=0; i<N; i++){ vector<vector<ll>> pd(N, vector<ll>(N)); if (S[i] == '('){ cnt++; for (int j=0; j<=cnt; j++){ k = cnt-j; if (j) pd[j][k] += dp[j-1][k]; if (k) pd[j][k] += dp[j][k-1]; pd[j][k] %= modc; } } else{ cnt--; for (int j=0; j<=cnt; j++){ k = cnt-j; if (j+1<N) pd[j][k] += dp[j+1][k]; if (k+1<N) pd[j][k] += dp[j][k+1]; pd[j][k] %= modc; } } swap(dp, pd); } cout << dp[0][0] << endl; return 0; }