結果
| 問題 |
No.973 余興
|
| コンテスト | |
| ユーザー |
tenten
|
| 提出日時 | 2023-06-08 17:38:03 |
| 言語 | Java (openjdk 23) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 2,573 bytes |
| コンパイル時間 | 2,842 ms |
| コンパイル使用メモリ | 92,340 KB |
| 実行使用メモリ | 183,352 KB |
| 最終ジャッジ日時 | 2024-12-31 02:16:56 |
| 合計ジャッジ時間 | 134,577 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 30 TLE * 24 |
ソースコード
import java.io.*;
import java.util.*;
import java.util.stream.*;
public class Main {
static long[] sums;
static boolean[][] wins;
static boolean[][] used;
static int x;
public static void main(String[] args) throws Exception {
Scanner sc = new Scanner();
int n = sc.nextInt();
x = sc.nextInt();
sums = new long[n + 1];
for (int i = 1; i <= n; i++) {
sums[i] = sums[i - 1] + sc.nextInt();
}
wins = new boolean[n + 1][n + 1];
used = new boolean[n + 1][n + 1];
if (dfw(0, n)) {
System.out.println("A");
} else {
System.out.println("B");
}
}
static boolean dfw(int left, int right) {
if (right - left == 1) {
return false;
}
if (sums[right] - sums[left] <= x) {
return true;
}
if (!used[left][right]) {
used[left][right] = true;
for (int i = left + 1; i < right && sums[i] - sums[left] <= x && !wins[left][right]; i++) {
wins[left][right] = !dfw(i, right);
}
for (int i = right - 1; i > left && sums[right] - sums[i] <= x && !wins[left][right]; i--) {
wins[left][right] = !dfw(left, i);
}
}
return wins[left][right];
}
}
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