結果

問題 No.973 余興
ユーザー mkawa2mkawa2
提出日時 2020-01-18 12:38:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,092 ms / 4,000 ms
コード長 2,270 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 469,176 KB
最終ジャッジ日時 2024-06-27 06:25:13
合計ジャッジ時間 32,337 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,092 ms
468,684 KB
testcase_01 AC 1,031 ms
468,744 KB
testcase_02 AC 1,020 ms
468,608 KB
testcase_03 AC 1,018 ms
468,456 KB
testcase_04 AC 1,035 ms
468,712 KB
testcase_05 AC 967 ms
468,552 KB
testcase_06 AC 992 ms
468,608 KB
testcase_07 AC 1,003 ms
468,224 KB
testcase_08 AC 961 ms
467,072 KB
testcase_09 AC 1,051 ms
468,480 KB
testcase_10 AC 977 ms
452,992 KB
testcase_11 AC 316 ms
218,112 KB
testcase_12 AC 315 ms
218,112 KB
testcase_13 AC 314 ms
216,660 KB
testcase_14 AC 314 ms
217,216 KB
testcase_15 AC 101 ms
91,932 KB
testcase_16 AC 105 ms
92,616 KB
testcase_17 AC 89 ms
86,204 KB
testcase_18 AC 95 ms
89,004 KB
testcase_19 AC 98 ms
88,576 KB
testcase_20 AC 88 ms
85,376 KB
testcase_21 AC 105 ms
92,416 KB
testcase_22 AC 109 ms
91,904 KB
testcase_23 AC 95 ms
89,088 KB
testcase_24 AC 95 ms
88,704 KB
testcase_25 AC 80 ms
81,408 KB
testcase_26 AC 88 ms
85,428 KB
testcase_27 AC 114 ms
95,280 KB
testcase_28 AC 98 ms
88,832 KB
testcase_29 AC 96 ms
88,304 KB
testcase_30 AC 660 ms
468,352 KB
testcase_31 AC 653 ms
468,524 KB
testcase_32 AC 645 ms
468,516 KB
testcase_33 AC 648 ms
468,352 KB
testcase_34 AC 691 ms
466,516 KB
testcase_35 AC 693 ms
468,736 KB
testcase_36 AC 675 ms
457,856 KB
testcase_37 AC 681 ms
458,004 KB
testcase_38 AC 700 ms
467,200 KB
testcase_39 AC 691 ms
467,964 KB
testcase_40 AC 38 ms
52,736 KB
testcase_41 AC 38 ms
52,480 KB
testcase_42 AC 37 ms
52,480 KB
testcase_43 AC 40 ms
52,224 KB
testcase_44 AC 38 ms
52,736 KB
testcase_45 AC 54 ms
63,872 KB
testcase_46 AC 803 ms
468,376 KB
testcase_47 AC 702 ms
468,352 KB
testcase_48 AC 790 ms
468,480 KB
testcase_49 AC 728 ms
437,836 KB
testcase_50 AC 794 ms
465,280 KB
testcase_51 AC 798 ms
468,352 KB
testcase_52 AC 1,025 ms
468,612 KB
testcase_53 AC 860 ms
462,108 KB
testcase_54 AC 1,016 ms
468,608 KB
testcase_55 AC 881 ms
469,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]

def main():
    n, x = MI()
    aa = LI()
    # 閉区間[l,r]が残っている状態で手順が来たとき、勝てるかどうかをDPする
    # lが現在の位置からどこまで移動できるかを事前計算する
    lto = [0] * n
    to = -1
    s = 0
    for l in range(n):
        while to < n - 1 and s <= x:
            to += 1
            s += aa[to]
        lto[l] = to
        s -= aa[l]
    # print(lto)
    # rが現在の位置からどこまで移動できるかを事前計算する
    rto = [0] * n
    to = n
    s = 0
    for r in range(n - 1, -1, -1):
        while to > 0 and s <= x:
            to -= 1
            s += aa[to]
        rto[r] = to
        s -= aa[r]
    # print(rto)
    # l<rを守ったうえで、lは大きい方から、rは小さい方からDP[l][r]を更新
    # 遷移先に1つでも負け(0)があれば勝ち(1)、そうでなければ(すべて1なら)負け(0)
    # ただし、遷移先が複数あり、愚直にやるとTLEするので
    # lとr別々に累積和の表を持って、0の遷移先があるか判断する
    dpl = [[0] * n for _ in range(n)]
    dpr = [[0] * n for _ in range(n)]
    win = 0
    for l in range(n - 2, -1, -1):
        for r in range(l + 1, n):
            win = 0
            # l=r(残り1つの状態)に遷移できれば勝ちで確定
            # (和<遷移先のマスの数)ならば、どこかのマスは0なので勝ち
            # lを動かすとき
            nl = lto[l]  # 最遠の遷移先
            if nl >= r or dpl[l + 1][r] - dpl[nl + 1][r] < nl - l: win = 1
            # rを動かすとき
            nr = rto[r]  # 最遠の遷移先
            if nr <= l or dpr[l][r - 1] - dpr[l][nr - 1] < r - nr: win = 1
            # 表を更新
            dpl[l][r] = dpl[l + 1][r] + win
            dpr[l][r] = dpr[l][r - 1] + win
    if win:
        print("A")
    else:
        print("B")

main()
0