結果

問題 No.973 余興
ユーザー 👑 hitonanodehitonanode
提出日時 2020-01-17 22:42:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,360 bytes
コンパイル時間 1,657 ms
コンパイル使用メモリ 172,764 KB
実行使用メモリ 101,204 KB
最終ジャッジ日時 2023-09-08 05:25:30
合計ジャッジ時間 47,104 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1,678 ms
100,968 KB
testcase_02 WA -
testcase_03 AC 1,632 ms
100,928 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 1,660 ms
100,980 KB
testcase_07 AC 1,629 ms
101,044 KB
testcase_08 AC 1,640 ms
100,680 KB
testcase_09 AC 1,645 ms
100,928 KB
testcase_10 AC 1,612 ms
97,244 KB
testcase_11 AC 459 ms
38,468 KB
testcase_12 AC 446 ms
38,348 KB
testcase_13 WA -
testcase_14 AC 437 ms
38,204 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 52 ms
6,308 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 66 ms
6,944 KB
testcase_22 WA -
testcase_23 AC 52 ms
6,268 KB
testcase_24 AC 51 ms
6,192 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 75 ms
7,836 KB
testcase_28 WA -
testcase_29 AC 50 ms
6,144 KB
testcase_30 AC 1,307 ms
101,036 KB
testcase_31 AC 1,295 ms
100,968 KB
testcase_32 AC 1,307 ms
100,904 KB
testcase_33 AC 1,317 ms
101,036 KB
testcase_34 AC 1,253 ms
100,644 KB
testcase_35 AC 1,244 ms
101,032 KB
testcase_36 WA -
testcase_37 AC 1,200 ms
98,380 KB
testcase_38 AC 1,223 ms
100,644 KB
testcase_39 WA -
testcase_40 AC 1 ms
4,380 KB
testcase_41 AC 1 ms
4,376 KB
testcase_42 AC 1 ms
4,376 KB
testcase_43 WA -
testcase_44 AC 2 ms
4,380 KB
testcase_45 AC 2 ms
4,376 KB
testcase_46 AC 488 ms
100,920 KB
testcase_47 AC 475 ms
100,972 KB
testcase_48 AC 482 ms
100,956 KB
testcase_49 AC 420 ms
93,312 KB
testcase_50 AC 476 ms
100,128 KB
testcase_51 AC 449 ms
100,964 KB
testcase_52 AC 1,385 ms
100,944 KB
testcase_53 WA -
testcase_54 AC 1,447 ms
100,908 KB
testcase_55 AC 1,413 ms
100,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using lint = long long int;
using pint = pair<int, int>;
struct fast_ios { fast_ios(){ cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(20); }; } fast_ios_;
#define ALL(x) (x).begin(), (x).end()
#define FOR(i, begin, end) for(int i=(begin),i##_end_=(end);i<i##_end_;i++)
#define IFOR(i, begin, end) for(int i=(end)-1,i##_begin_=(begin);i>=i##_begin_;i--)
#define REP(i, n) FOR(i,0,n)
#define IREP(i, n) IFOR(i,0,n)
template<typename T> bool mmax(T &m, const T q) { if (m < q) {m = q; return true;} else return false; }
template<typename T> bool mmin(T &m, const T q) { if (m > q) {m = q; return true;} else return false; }
template<typename T> istream &operator>>(istream &is, vector<T> &vec){ for (auto &v : vec) is >> v; return is; }
template<typename T> ostream &operator<<(ostream &os, const vector<T> &vec){ os << "["; for (auto v : vec) os << v << ","; os << "]"; return os; }
template<typename T1, typename T2> ostream &operator<<(ostream &os, const pair<T1, T2> &pa){ os << "(" << pa.first << "," << pa.second << ")"; return os; }
#define dbg(x) cerr << #x << " = " << (x) << " (L" << __LINE__ << ") " << __FILE__ << endl;


constexpr int LOSE = 1;
constexpr int WIN = 2;

int main()
{
    int N;
    lint X;
    cin >> N >> X;
    vector<lint> A(N);
    cin >> A;

    vector<lint> B(N + 1);
    REP(i, N) B[i + 1] = B[i] + A[i];

    vector<int> lose_lr(N, N + 1), lose_rl(N + 1, -1);
    vector<vector<int>> win_lose(N + 1, vector<int>(N + 1));

    REP(i, N) win_lose[i][i + 1] = LOSE, lose_lr[i] = i + 1, lose_rl[i + 1] = i;
    REP(i, N + 1) win_lose[i][i] = WIN;

    FOR(d, 2, N + 1) {
        REP(l, N - d + 1) {
            bool f = false;
            int r = l + d;
            int i = upper_bound(ALL(B), B[l] + X) - B.begin();

            if (i >= r) f = true;

            if (lose_rl[r] >= 0 and lose_rl[r] <= i) f = true;

            auto j = lower_bound(ALL(B), B[r] - X) - B.begin();
            if (j <= l) f = true;
            if (lose_lr[l] >= 0 and lose_lr[l] >= j) f = true;

            if (f) {
                win_lose[l][r] = WIN;
            } else {
                win_lose[l][r] = LOSE;
                mmax(lose_lr[l], r);
                mmin(lose_rl[r], l);
            }
        }
    }
    cout << (win_lose[0][N] == WIN ? "A" : "B") << endl;
}
0