結果

問題 No.973 余興
ユーザー 👑 hos.lyrichos.lyric
提出日時 2020-01-17 21:58:43
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 540 ms / 4,000 ms
コード長 3,691 bytes
コンパイル時間 704 ms
コンパイル使用メモリ 122,416 KB
実行使用メモリ 205,232 KB
最終ジャッジ日時 2024-06-22 04:13:44
合計ジャッジ時間 18,758 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 500 ms
204,160 KB
testcase_01 AC 479 ms
204,060 KB
testcase_02 AC 476 ms
204,932 KB
testcase_03 AC 479 ms
204,016 KB
testcase_04 AC 499 ms
204,228 KB
testcase_05 AC 478 ms
205,044 KB
testcase_06 AC 487 ms
204,604 KB
testcase_07 AC 479 ms
204,928 KB
testcase_08 AC 472 ms
204,252 KB
testcase_09 AC 485 ms
204,900 KB
testcase_10 AC 444 ms
200,820 KB
testcase_11 AC 150 ms
76,256 KB
testcase_12 AC 151 ms
75,468 KB
testcase_13 AC 149 ms
76,120 KB
testcase_14 AC 156 ms
75,924 KB
testcase_15 AC 18 ms
10,708 KB
testcase_16 AC 18 ms
10,832 KB
testcase_17 AC 11 ms
9,880 KB
testcase_18 AC 13 ms
9,940 KB
testcase_19 AC 13 ms
9,948 KB
testcase_20 AC 10 ms
9,240 KB
testcase_21 AC 17 ms
10,656 KB
testcase_22 AC 16 ms
10,792 KB
testcase_23 AC 14 ms
9,904 KB
testcase_24 AC 14 ms
9,852 KB
testcase_25 AC 7 ms
7,512 KB
testcase_26 AC 10 ms
9,104 KB
testcase_27 AC 22 ms
20,888 KB
testcase_28 AC 14 ms
10,584 KB
testcase_29 AC 13 ms
9,844 KB
testcase_30 AC 501 ms
204,256 KB
testcase_31 AC 517 ms
204,752 KB
testcase_32 AC 540 ms
204,588 KB
testcase_33 AC 498 ms
205,164 KB
testcase_34 AC 501 ms
203,584 KB
testcase_35 AC 505 ms
204,320 KB
testcase_36 AC 489 ms
202,176 KB
testcase_37 AC 466 ms
201,180 KB
testcase_38 AC 504 ms
204,376 KB
testcase_39 AC 485 ms
205,232 KB
testcase_40 AC 1 ms
6,944 KB
testcase_41 AC 1 ms
6,940 KB
testcase_42 AC 1 ms
6,940 KB
testcase_43 AC 1 ms
6,940 KB
testcase_44 AC 1 ms
6,940 KB
testcase_45 AC 1 ms
6,940 KB
testcase_46 AC 486 ms
204,136 KB
testcase_47 AC 464 ms
205,072 KB
testcase_48 AC 499 ms
204,912 KB
testcase_49 AC 412 ms
197,232 KB
testcase_50 AC 468 ms
204,672 KB
testcase_51 AC 497 ms
204,256 KB
testcase_52 AC 534 ms
205,064 KB
testcase_53 AC 524 ms
202,288 KB
testcase_54 AC 526 ms
204,520 KB
testcase_55 AC 508 ms
204,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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][ia] - dp1[j][ib] < ib - ia);
      }
      
      foreach (w; 2 .. N + 1) {
        foreach (i; 0 .. N - w + 1) {
          const j = i + w;
          int x = 0;
          // eat [i, i + 1), ..., [i, ls[i] - 1)
          if (check1(j, i + 1, min(ls[i], j))) {
            x = 1;
          }
          // eat [rs[j], j), ..., [j - 1, j)
          if (check0(i, 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;
        }
      }
      
      debug {
        auto brt = new int[][](N + 1, N + 1);
        foreach (w; 2 .. N + 1) {
          foreach (i; 0 .. N - w + 1) {
            const j = i + w;
            foreach (k; i + 1 .. j) {
              if (ASum[k] - ASum[i] <= X) {
                if (!brt[k][j]) {
                  brt[i][j] = 1;
                }
              }
            }
            foreach (k; i + 1 .. j) {
              if (ASum[j] - ASum[k] <= X) {
                if (!brt[i][k]) {
                  brt[i][j] = 1;
                }
              }
            }
          }
        }
        foreach (i; 0 .. N + 1) {
          writeln(i, ": ", brt[i][i + 1 .. $]);
        }
        foreach (i; 0 .. N + 1) foreach (j; i + 1 .. N + 1) {
          if (brt[i][j] != dp0[i][j + 1] - dp0[i][j]) {
            writeln(i, " ", j, ": ", brt[i][j], " ", dp0[i][j + 1] - dp0[i][j]);
            assert(false);
          }
        }
      }
      
      const ans = dp0[0][N + 1] - dp0[0][N];
      writeln(ans ? "A" : "B");
    }
  } catch (EOFException e) {
  }
}
0