結果
| 問題 |
No.2031 Colored Brackets
|
| コンテスト | |
| ユーザー |
tenten
|
| 提出日時 | 2023-02-07 17:05:19 |
| 言語 | Java (openjdk 23) |
| 結果 |
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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 20 TLE * 5 MLE * 5 |
ソースコード
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();
}
}
tenten