結果

問題 No.2031 Colored Brackets
ユーザー tenten
提出日時 2023-02-07 17:10:41
言語 Java
(openjdk 23)
結果
AC  
実行時間 1,490 ms / 2,000 ms
コード長 3,075 bytes
コンパイル時間 2,963 ms
コンパイル使用メモリ 92,444 KB
実行使用メモリ 59,392 KB
最終ジャッジ日時 2024-07-05 12:57:36
合計ジャッジ時間 20,837 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

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[][] 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++) {
            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