結果

問題 No.2031 Colored Brackets
ユーザー tentententen
提出日時 2023-02-07 17:05:19
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 3,171 bytes
コンパイル時間 4,028 ms
コンパイル使用メモリ 85,812 KB
実行使用メモリ 747,452 KB
最終ジャッジ日時 2023-09-18 23:52:47
合計ジャッジ時間 32,057 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
49,404 KB
testcase_01 AC 42 ms
49,460 KB
testcase_02 AC 42 ms
49,496 KB
testcase_03 AC 43 ms
49,496 KB
testcase_04 AC 808 ms
467,464 KB
testcase_05 AC 289 ms
133,064 KB
testcase_06 AC 476 ms
235,016 KB
testcase_07 AC 42 ms
49,604 KB
testcase_08 MLE -
testcase_09 MLE -
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,826 ms
70,920 KB
testcase_19 AC 1,152 ms
67,520 KB
testcase_20 AC 553 ms
62,844 KB
testcase_21 AC 588 ms
62,984 KB
testcase_22 AC 684 ms
63,052 KB
testcase_23 AC 1,744 ms
70,316 KB
testcase_24 AC 44 ms
49,404 KB
testcase_25 AC 43 ms
49,368 KB
testcase_26 AC 43 ms
49,576 KB
testcase_27 AC 44 ms
49,376 KB
testcase_28 AC 44 ms
49,500 KB
testcase_29 AC 44 ms
49,480 KB
testcase_30 AC 44 ms
49,732 KB
testcase_31 AC 70 ms
55,100 KB
testcase_32 AC 43 ms
49,536 KB
testcase_33 AC 65 ms
52,892 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