結果

問題 No.2031 Colored Brackets
ユーザー tentententen
提出日時 2022-08-08 18:18:07
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 2,366 bytes
コンパイル時間 2,060 ms
コンパイル使用メモリ 79,232 KB
実行使用メモリ 374,744 KB
最終ジャッジ日時 2024-09-19 03:35:05
合計ジャッジ時間 14,884 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
37,048 KB
testcase_01 AC 49 ms
36,540 KB
testcase_02 AC 49 ms
37,156 KB
testcase_03 AC 49 ms
37,120 KB
testcase_04 AC 304 ms
84,672 KB
testcase_05 AC 189 ms
55,576 KB
testcase_06 AC 247 ms
72,544 KB
testcase_07 AC 49 ms
37,064 KB
testcase_08 AC 445 ms
112,272 KB
testcase_09 AC 619 ms
140,472 KB
testcase_10 AC 1,053 ms
200,368 KB
testcase_11 AC 791 ms
152,844 KB
testcase_12 AC 1,045 ms
198,044 KB
testcase_13 AC 459 ms
110,888 KB
testcase_14 AC 1,035 ms
195,688 KB
testcase_15 AC 1,159 ms
197,436 KB
testcase_16 AC 1,061 ms
197,144 KB
testcase_17 TLE -
testcase_18 AC 78 ms
40,808 KB
testcase_19 AC 67 ms
40,704 KB
testcase_20 AC 75 ms
38,912 KB
testcase_21 AC 79 ms
39,536 KB
testcase_22 AC 79 ms
40,560 KB
testcase_23 AC 84 ms
40,836 KB
testcase_24 AC 49 ms
36,660 KB
testcase_25 AC 50 ms
36,904 KB
testcase_26 AC 48 ms
36,964 KB
testcase_27 AC 48 ms
36,544 KB
testcase_28 AC 51 ms
37,152 KB
testcase_29 AC 48 ms
36,804 KB
testcase_30 AC 49 ms
36,868 KB
testcase_31 AC 94 ms
41,244 KB
testcase_32 AC 48 ms
36,932 KB
testcase_33 AC 85 ms
40,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    static final int MOD = 998244353;
    static ArrayList<HashMap<Integer, HashMap<Integer, Integer>>> dp = new ArrayList<>();
    static char[] parens;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        parens = sc.next().toCharArray();
        for (int i = 0; i < n; i++) {
            dp.add(new HashMap<>());
        }
        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.get(idx).containsKey(red)) {
            dp.get(idx).put(red, new HashMap<>());
        }
        if (!dp.get(idx).get(red).containsKey(blue)) {
            if (parens[idx] == '(') {
                if (red == blue) {
                    dp.get(idx).get(red).put(blue, dfw(idx - 1, red - 1, blue) * 2 % MOD);
                } else {
                    dp.get(idx).get(red).put(blue, (dfw(idx - 1, red - 1, blue) + dfw(idx - 1, red, blue - 1)) % MOD);
                }
            } else {
                if (red == blue) {
                    dp.get(idx).get(red).put(blue, dfw(idx - 1, red, blue + 1) * 2 % MOD);
                } else {
                    dp.get(idx).get(red).put(blue, (dfw(idx - 1, red + 1, blue) + dfw(idx - 1, red, blue + 1)) % MOD);
                }
            }
        }
        return dp.get(idx).get(red).get(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();
    }
}
0