結果
問題 | No.973 余興 |
ユーザー | 👑 hos.lyric |
提出日時 | 2020-01-17 21:48:12 |
言語 | D (dmd 2.106.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,745 bytes |
コンパイル時間 | 893 ms |
コンパイル使用メモリ | 120,680 KB |
実行使用メモリ | 207,768 KB |
最終ジャッジ日時 | 2024-06-22 04:12:55 |
合計ジャッジ時間 | 22,583 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 575 ms
204,440 KB |
testcase_01 | AC | 578 ms
204,516 KB |
testcase_02 | AC | 582 ms
204,724 KB |
testcase_03 | AC | 574 ms
204,580 KB |
testcase_04 | AC | 588 ms
205,820 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 551 ms
199,896 KB |
testcase_11 | AC | 171 ms
76,612 KB |
testcase_12 | AC | 175 ms
76,000 KB |
testcase_13 | WA | - |
testcase_14 | AC | 174 ms
75,128 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 8 ms
9,004 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 12 ms
10,656 KB |
testcase_23 | AC | 11 ms
9,916 KB |
testcase_24 | AC | 11 ms
10,448 KB |
testcase_25 | AC | 7 ms
7,468 KB |
testcase_26 | AC | 9 ms
9,420 KB |
testcase_27 | AC | 18 ms
20,420 KB |
testcase_28 | WA | - |
testcase_29 | AC | 10 ms
9,748 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 603 ms
204,380 KB |
testcase_35 | AC | 641 ms
204,292 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | AC | 608 ms
205,288 KB |
testcase_39 | WA | - |
testcase_40 | AC | 1 ms
6,940 KB |
testcase_41 | AC | 1 ms
6,940 KB |
testcase_42 | AC | 1 ms
6,944 KB |
testcase_43 | WA | - |
testcase_44 | AC | 2 ms
6,944 KB |
testcase_45 | WA | - |
testcase_46 | AC | 598 ms
204,924 KB |
testcase_47 | WA | - |
testcase_48 | AC | 591 ms
204,020 KB |
testcase_49 | WA | - |
testcase_50 | AC | 583 ms
204,680 KB |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | AC | 696 ms
202,408 KB |
testcase_54 | AC | 675 ms
204,472 KB |
testcase_55 | AC | 687 ms
204,580 KB |
ソースコード
import std.conv, std.functional, std.range, std.stdio, std.string; import std.algorithm, std.array, std.bigint, std.bitmanip, std.complex, std.container, std.math, std.mathspecial, std.numeric, std.regex, std.typecons; import core.bitop; class EOFException : Throwable { this() { super("EOF"); } } string[] tokens; string readToken() { for (; tokens.empty; ) { if (stdin.eof) { throw new EOFException; } tokens = readln.split; } auto token = tokens.front; tokens.popFront; return token; } int readInt() { return readToken.to!int; } long readLong() { return readToken.to!long; } real readReal() { return readToken.to!real; } bool chmin(T)(ref T t, in T f) { if (t > f) { t = f; return true; } else { return false; } } bool chmax(T)(ref T t, in T f) { if (t < f) { t = f; return true; } else { return false; } } int binarySearch(alias pred, T)(in T[] as) { int lo = -1, hi = cast(int)(as.length); for (; lo + 1 < hi; ) { const mid = (lo + hi) >> 1; (unaryFun!pred(as[mid]) ? hi : lo) = mid; } return hi; } int lowerBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a >= val)); } int upperBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a > val)); } void main() { try { for (; ; ) { const N = readInt(); const X = readLong(); auto A = new long[N]; foreach (i; 0 .. N) { A[i] = readLong(); } auto ASum = new long[N + 1]; foreach (i; 0 .. N) { ASum[i + 1] = ASum[i] + A[i]; } auto ls = new int[N + 1]; auto rs = new int[N + 1]; foreach (i; 0 .. N + 1) { ls[i] = ASum.upperBound(ASum[i] + X); rs[i] = ASum.lowerBound(ASum[i] - X); } debug { writeln("A = ", A); writeln("ls = ", ls); writeln("rs = ", rs); } auto dp0 = new int[][](N + 1, N + 2); auto dp1 = new int[][](N + 1, N + 2); bool check0(int i, int ja, int jb) { return (dp0[i][jb] - dp0[i][ja] < jb - ja); } bool check1(int j, int ia, int ib) { return (dp1[j][ib] - dp1[j][ia] < ib - ia); } foreach (w; 2 .. N + 1) { foreach (i; 0 .. N - w + 1) { const j = i + w; int x; // [i, i + 1), ..., [i, ls[i] - 1) if (check0(i, i + 1, min(ls[i], j))) { x = 1; } // [rs[j], j), ..., [j - 1, j) if (check1(j, max(rs[j], i + 1), j)) { x = 1; } debug { writeln(i, " ", j, ": ", x); } dp0[i][j + 1] = dp0[i][j] + x; dp1[j][i] = dp1[j][i + 1] + x; } } const ans = dp0[0][N + 1] - dp0[0][N]; writeln(ans ? "A" : "B"); } } catch (EOFException e) { } }