結果

問題 No.2031 Colored Brackets
ユーザー tentententen
提出日時 2023-02-07 17:05:19
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 3,171 bytes
コンパイル時間 3,151 ms
コンパイル使用メモリ 86,668 KB
実行使用メモリ 746,112 KB
最終ジャッジ日時 2024-07-05 12:53:37
合計ジャッジ時間 32,130 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,712 KB
testcase_01 AC 50 ms
36,996 KB
testcase_02 AC 49 ms
36,880 KB
testcase_03 AC 51 ms
36,852 KB
testcase_04 AC 919 ms
467,316 KB
testcase_05 AC 289 ms
124,500 KB
testcase_06 AC 512 ms
230,068 KB
testcase_07 AC 49 ms
37,192 KB
testcase_08 MLE -
testcase_09 TLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 TLE -
testcase_13 MLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 MLE -
testcase_18 AC 1,648 ms
59,692 KB
testcase_19 AC 1,166 ms
57,312 KB
testcase_20 AC 609 ms
53,348 KB
testcase_21 AC 648 ms
53,260 KB
testcase_22 AC 728 ms
53,048 KB
testcase_23 AC 1,542 ms
58,904 KB
testcase_24 AC 52 ms
36,980 KB
testcase_25 AC 51 ms
36,944 KB
testcase_26 AC 52 ms
36,940 KB
testcase_27 AC 53 ms
37,316 KB
testcase_28 AC 50 ms
37,172 KB
testcase_29 AC 60 ms
37,188 KB
testcase_30 AC 52 ms
37,044 KB
testcase_31 AC 85 ms
45,740 KB
testcase_32 AC 50 ms
36,852 KB
testcase_33 AC 81 ms
40,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static final int MOD = 998244353;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        char[] s = sc.next().toCharArray();
        int[] maxes = new int[n];
        maxes[0] = 1;
        for (int i = 1; i < s.length; i++) {
            if (s[i] == '(') {
                maxes[i] = maxes[i - 1] + 1;
            } else {
                maxes[i] = maxes[i - 1] - 1;
            }
        }
        int[][][] dp = new int[n][][];
        int[][] current = new int[n / 2 + 1][n / 2 + 1];
        int[][] next = new int[n / 2 + 1][n / 2 + 1];
        current[1][0] = 1;
        current[0][1] = 1;
        for (int i = 1; i < n; i++) {
            dp[i] = new int[maxes[i] + 1][maxes[i] + 1];
            for (int j = 0; j <= maxes[i - 1]; j++) {
                if (s[i] == '(') {
                    next[j + 1][maxes[i - 1] - j] += current[j][maxes[i - 1] - j];
                    next[j + 1][maxes[i - 1] - j] %= MOD;
                    next[j][maxes[i - 1] - j + 1] += current[j][maxes[i - 1] - j];
                    next[j][maxes[i - 1] - j + 1] %= MOD;
                } else {
                    if (j > 0) {
                        next[j - 1][maxes[i - 1] - j] += current[j][maxes[i - 1] - j];
                        next[j - 1][maxes[i - 1] - j] %= MOD;
                    }
                    if (maxes[i - 1] - j > 0) {
                        next[j][maxes[i - 1] - j - 1] += current[j][maxes[i - 1] - j];
                        next[j][maxes[i - 1] - j - 1] %= MOD;
                    }
                }
            }
            int[][] tmp = current;
            current = next;
            next = tmp;
            for (int[] arr : next) {
                Arrays.fill(arr, 0);
            }
        }
        System.out.println(current[0][0]);
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0