結果
問題 | No.2031 Colored Brackets |
ユーザー | tenten |
提出日時 | 2022-08-08 18:07:43 |
言語 | Java21 (openjdk 21) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,895 bytes |
コンパイル時間 | 2,238 ms |
コンパイル使用メモリ | 77,712 KB |
実行使用メモリ | 742,108 KB |
最終ジャッジ日時 | 2024-09-19 03:24:22 |
合計ジャッジ時間 | 12,822 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
37,220 KB |
testcase_01 | AC | 45 ms
37,208 KB |
testcase_02 | AC | 44 ms
36,820 KB |
testcase_03 | AC | 45 ms
36,920 KB |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | AC | 51 ms
50,688 KB |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | AC | 48 ms
52,612 KB |
testcase_25 | AC | 48 ms
50,316 KB |
testcase_26 | AC | 46 ms
50,452 KB |
testcase_27 | AC | 53 ms
50,672 KB |
testcase_28 | AC | 47 ms
50,640 KB |
testcase_29 | AC | 47 ms
50,676 KB |
testcase_30 | AC | 49 ms
50,568 KB |
testcase_31 | AC | 103 ms
75,844 KB |
testcase_32 | AC | 51 ms
50,424 KB |
testcase_33 | AC | 107 ms
75,452 KB |
ソースコード
import java.io.*; import java.util.*; public class Main { static final int MOD = 998244353; static int[][][] dp; static char[] parens; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); parens = sc.next().toCharArray(); dp = new int[n][n / 2 + 1][n / 2 + 1]; for (int[][] arr1 : dp) { for (int[] arr2 : arr1) { Arrays.fill(arr2, -1); } } System.out.println(dfw(n - 1, 0, 0)); } static int dfw(int idx, int red, int blue) { if (red < 0 || blue < 0) { return 0; } if (idx < 0) { if (red == 0 && blue == 0) { return 1; } else { return 0; } } if (dp[idx][red][blue] < 0) { if (parens[idx] == '(') { dp[idx][red][blue] = (dfw(idx - 1, red - 1, blue) + dfw(idx - 1, red, blue - 1)) % MOD; } else { dp[idx][red][blue] = (dfw(idx - 1, red + 1, blue) + dfw(idx - 1, red, blue + 1)) % MOD; } } return dp[idx][red][blue]; } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }