結果
問題 | No.2106 Wild Cacco |
ユーザー | ygussany |
提出日時 | 2022-09-29 21:59:43 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,708 bytes |
コンパイル時間 | 3,381 ms |
コンパイル使用メモリ | 103,552 KB |
実行使用メモリ | 40,888 KB |
最終ジャッジ日時 | 2024-06-09 16:53:20 |
合計ジャッジ時間 | 8,138 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 10 ms
39,808 KB |
testcase_01 | AC | 10 ms
34,176 KB |
testcase_02 | AC | 11 ms
34,304 KB |
testcase_03 | AC | 10 ms
34,176 KB |
testcase_04 | AC | 10 ms
34,304 KB |
testcase_05 | AC | 10 ms
34,256 KB |
testcase_06 | AC | 11 ms
34,160 KB |
testcase_07 | AC | 11 ms
34,176 KB |
testcase_08 | AC | 11 ms
34,224 KB |
testcase_09 | AC | 11 ms
34,176 KB |
testcase_10 | AC | 11 ms
34,304 KB |
testcase_11 | AC | 1,465 ms
34,320 KB |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
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 | -- | - |
testcase_34 | -- | - |
ソースコード
#include <stdio.h> const int Mod = 998244353; int naive(char s[]) { int l; for (l = 0; s[l] != 0; l++); if (l % 2 != 0) return 0; unsigned int dp[2003][4003] = {}, tmp; int i, j, k, ll = l / 2; for (k = 0, dp[0][0] = 1; k < l; k++) { if (s[k] == '(') { for (i = 0; i <= k / 2; i++) { for (j = i * 2 + k % 2; j <= k; j += 2) { if (dp[i][j] == 0) continue; tmp = dp[i][j]; dp[i][j] = 0; while (tmp >= Mod) tmp -= Mod; dp[i][j+1] += tmp; } } } else if (s[k] == ')') { for (i = 0; i <= k / 2; i++) { for (j = i * 2 + k % 2; j <= k; j += 2) { if (dp[i][j] == 0) continue; tmp = dp[i][j]; dp[i][j] = 0; while (tmp >= Mod) tmp -= Mod; if (j > i * 2) dp[i][j-1] += tmp; else if (i > 0) dp[i-1][j-1] += tmp; } } } else if (s[k] == '?') { for (i = 0; i <= k / 2; i++) { for (j = i * 2 + k % 2; j <= k; j += 2) { if (dp[i][j] == 0) continue; tmp = dp[i][j]; dp[i][j] = 0; while (tmp >= Mod) tmp -= Mod; if (j > i * 2) dp[i+1][j+1] += tmp; else dp[i][j+1] += tmp; } } } else { for (i = 0; i <= k / 2; i++) { for (j = i * 2 + k % 2; j <= k; j += 2) { if (dp[i][j] == 0) continue; tmp = dp[i][j]; dp[i][j] = 0; while (tmp >= Mod) tmp -= Mod; dp[i][j+1] += tmp; if (j > i * 2) dp[i][j-1] += tmp; else if (i > 0) dp[i-1][j-1] += tmp; if (j > i * 2) dp[i+1][j+1] += tmp; else dp[i][j+1] += tmp; } } } } long long ans = 0; for (i = 0; i <= ll; i++) ans += dp[i][i*2]; return ans % Mod; } int main() { char s[4001]; scanf("%s", s); printf("%d\n", naive(s)); fflush(stdout); return 0; }