結果

問題 No.973 余興
ユーザー shibh308shibh308
提出日時 2019-12-05 23:25:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,046 bytes
コンパイル時間 3,320 ms
コンパイル使用メモリ 222,088 KB
実行使用メモリ 199,168 KB
最終ジャッジ日時 2024-05-10 01:43:24
合計ジャッジ時間 62,781 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,530 ms
199,040 KB
testcase_01 WA -
testcase_02 AC 1,559 ms
199,040 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 1,495 ms
199,040 KB
testcase_06 AC 1,532 ms
199,040 KB
testcase_07 AC 1,506 ms
198,912 KB
testcase_08 AC 1,518 ms
198,272 KB
testcase_09 AC 1,547 ms
199,040 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 565 ms
73,216 KB
testcase_14 WA -
testcase_15 AC 40 ms
11,520 KB
testcase_16 AC 42 ms
11,520 KB
testcase_17 WA -
testcase_18 AC 32 ms
9,856 KB
testcase_19 AC 32 ms
9,728 KB
testcase_20 AC 24 ms
8,192 KB
testcase_21 AC 41 ms
11,392 KB
testcase_22 WA -
testcase_23 AC 32 ms
9,728 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 32 ms
9,856 KB
testcase_29 WA -
testcase_30 AC 1,869 ms
199,040 KB
testcase_31 AC 1,859 ms
199,040 KB
testcase_32 AC 1,850 ms
199,040 KB
testcase_33 AC 1,849 ms
198,912 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 1,807 ms
193,792 KB
testcase_37 AC 1,817 ms
193,792 KB
testcase_38 WA -
testcase_39 AC 1,832 ms
198,656 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 3 ms
5,376 KB
testcase_46 WA -
testcase_47 AC 1,798 ms
199,040 KB
testcase_48 WA -
testcase_49 AC 1,667 ms
183,680 KB
testcase_50 WA -
testcase_51 AC 1,802 ms
199,168 KB
testcase_52 AC 1,875 ms
199,040 KB
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#include "bits/stdc++.h"

using namespace std;

using i64 = long long;

template <typename T>
struct BIT{
    vector<T> elm;
    BIT(int n, T init = T()) : elm(n + 1, init){
    }

    // [0, x)
    T sum(int x){
        T val = 0;
        for(; x > 0; x -= x & -x)
            val += elm[x];
        return val;
    }

    // [l, r)
    T sum(int l, int r){
        return sum(r) - sum(l);
    }

    void add(int x, T val){
        for(++x; x < elm.size(); x += x & -x)
            elm[x] += val;
    }
};

signed main(){
    int n, x;
    cin >> n >> x;
    vector<int> v(n);
    for(auto& x : v)
        cin >> x;

    vector<i64> r(n + 1, 0);
    for(int i = 0; i < n; ++i)
        r[i + 1] = r[i] + v[i];

    vector<int> nex(n, n), prev(n, 0);
    for(int i = 0; i < n; ++i){
        auto it = upper_bound(r.begin(), r.end(), r[i] + x);
        int idx = distance(r.begin(), it);
        nex[i] = idx - 1;
        auto it2 = lower_bound(r.begin(), r.end(), r[i + 1] - x);
        idx = distance(r.begin(), it2);
        prev[i] = idx;
    }

    vector<BIT<int>> a(n, BIT<int>(n)), b(n, BIT<int>(n));

    for(int k = 1; k < n; ++k)
        for(int i = 0, j = k; j < n; ++i, ++j){
            bool f = false;
            // TODO: set len

            // dp[i][j] : dp[i][j - x, j)
            // cout << j - prev[j] << "   " << nex[i] - (i + 1) << "    ";
            f |= (a[i].sum(max(i, prev[j]), j) != (j - max(i, prev[j])));

            // dp[i][j] : dp[i, i + x][j, j)
            f |= (b[j].sum(i + 1, min(nex[i], j + 1)) != (min(nex[i], j + 1) - (i + 1)));
            if(f){
                a[i].add(j, 1);
                b[j].add(i, 1);
            }
            // cout << "[" << i << "," << j << "] -> " << (f ? "Win" : "Lose") << endl;
        }

    /*
    for(int i = 0; i < n; ++i){
        for(int j = 0; j < n; ++j)
            cout << a[i].sum(j, j + 1) << " \n"[j == n - 1];
    }
    cout << endl;
     */
    cout << (a[0].sum(n - 1, n) ? "A" : "B") << endl;
}
0