結果

問題 No.973 余興
ユーザー nebukuro09nebukuro09
提出日時 2020-01-17 22:36:59
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 1,623 bytes
コンパイル時間 1,231 ms
コンパイル使用メモリ 116,588 KB
実行使用メモリ 44,444 KB
最終ジャッジ日時 2024-06-22 04:16:09
合計ジャッジ時間 39,944 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,101 ms
43,340 KB
testcase_01 AC 1,095 ms
43,660 KB
testcase_02 AC 1,095 ms
42,720 KB
testcase_03 AC 1,097 ms
42,836 KB
testcase_04 AC 1,195 ms
44,236 KB
testcase_05 WA -
testcase_06 AC 1,127 ms
42,764 KB
testcase_07 WA -
testcase_08 AC 1,146 ms
43,908 KB
testcase_09 AC 1,116 ms
44,444 KB
testcase_10 AC 1,049 ms
42,504 KB
testcase_11 AC 429 ms
14,336 KB
testcase_12 AC 410 ms
15,988 KB
testcase_13 WA -
testcase_14 AC 418 ms
14,356 KB
testcase_15 AC 37 ms
6,940 KB
testcase_16 AC 37 ms
6,940 KB
testcase_17 AC 22 ms
6,944 KB
testcase_18 AC 29 ms
6,944 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 36 ms
6,944 KB
testcase_22 AC 36 ms
6,940 KB
testcase_23 AC 30 ms
6,940 KB
testcase_24 AC 30 ms
6,940 KB
testcase_25 AC 13 ms
6,940 KB
testcase_26 AC 21 ms
6,940 KB
testcase_27 AC 44 ms
6,940 KB
testcase_28 AC 29 ms
6,944 KB
testcase_29 AC 29 ms
6,940 KB
testcase_30 AC 1,142 ms
43,384 KB
testcase_31 AC 1,175 ms
43,280 KB
testcase_32 AC 1,154 ms
42,884 KB
testcase_33 AC 1,164 ms
42,728 KB
testcase_34 AC 1,160 ms
43,248 KB
testcase_35 AC 1,155 ms
43,360 KB
testcase_36 AC 1,131 ms
42,148 KB
testcase_37 AC 1,122 ms
43,204 KB
testcase_38 AC 1,155 ms
42,508 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,940 KB
testcase_43 AC 1 ms
6,944 KB
testcase_44 AC 1 ms
6,940 KB
testcase_45 AC 2 ms
6,940 KB
testcase_46 AC 940 ms
43,504 KB
testcase_47 WA -
testcase_48 AC 977 ms
43,960 KB
testcase_49 AC 874 ms
41,452 KB
testcase_50 AC 934 ms
42,920 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 1,313 ms
44,032 KB
testcase_54 AC 1,351 ms
43,256 KB
testcase_55 AC 1,344 ms
43,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop, core.stdc.stdio;

void main() {
    auto s = readln.split.map!(to!int);
    auto N = s[0];
    auto X = s[1].to!long;
    auto A = readln.split.map!(to!long).array;

    auto B = new long[](N+1);
    foreach (i; 0..N) B[i+1] = B[i] + A[i];

    long sum(int l, int r) {
        if (r < l) return 0;
        return B[r+1] - B[l];
    }

    int calc_left(int l, int r) {
        int hi = r + 1;
        int lo = l;
        while (hi - lo > 1) {
            int mid = (hi + lo) / 2;
            if (sum(l, mid) <= X) lo = mid;
            else hi = mid;
        }
        return lo;
    }

    int calc_right(int l, int r) {
        int hi = r;
        int lo = l - 1;
        while (hi - lo > 1) {
            int mid = (hi + lo) / 2;
            if (sum(mid, r) <= X) hi = mid;
            else lo = mid;
        }
        return hi;
    }

    auto ans = new bool[][](N, N);

    foreach (l; 0..N) {
        int minr = l;
        foreach (r; l+1..N) {
            int nr = calc_right(l, r) - 1;
            if (nr <= minr) {
                ans[l][r] = true;
            } else {
                minr = r;
            }
        }
    }

    foreach (r; 0..N) {
        int maxl = r;
        foreach_reverse (l; 0..r) {
            int nl = calc_left(l, r) + 1;
            if (nl >= maxl) {
                ans[l][r] = true;
            } else {
                maxl = l;
            }
        }
    }

    writeln(ans[0][N-1] ? "A" : "B") ;
}
0