結果

問題 No.973 余興
ユーザー shibh308shibh308
提出日時 2019-12-06 00:20:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 3,341 bytes
コンパイル時間 3,337 ms
コンパイル使用メモリ 226,072 KB
実行使用メモリ 401,824 KB
最終ジャッジ日時 2024-05-10 01:49:54
合計ジャッジ時間 63,811 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,780 ms
394,880 KB
testcase_01 AC 3,725 ms
394,880 KB
testcase_02 AC 3,753 ms
394,496 KB
testcase_03 AC 3,702 ms
394,496 KB
testcase_04 AC 3,723 ms
394,880 KB
testcase_05 AC 3,725 ms
394,880 KB
testcase_06 AC 3,747 ms
394,752 KB
testcase_07 AC 3,773 ms
394,752 KB
testcase_08 AC 3,703 ms
393,216 KB
testcase_09 TLE -
testcase_10 AC 3,524 ms
379,392 KB
testcase_11 AC 1,994 ms
144,256 KB
testcase_12 AC 2,012 ms
144,384 KB
testcase_13 AC 2,012 ms
143,232 KB
testcase_14 AC 1,997 ms
143,232 KB
testcase_15 AC 82 ms
19,072 KB
testcase_16 AC 83 ms
19,584 KB
testcase_17 AC 48 ms
13,056 KB
testcase_18 AC 66 ms
16,000 KB
testcase_19 AC 64 ms
16,000 KB
testcase_20 AC 45 ms
12,800 KB
testcase_21 AC 85 ms
19,072 KB
testcase_22 AC 84 ms
19,072 KB
testcase_23 AC 65 ms
16,000 KB
testcase_24 AC 63 ms
16,000 KB
testcase_25 AC 25 ms
8,960 KB
testcase_26 AC 45 ms
12,800 KB
testcase_27 AC 104 ms
21,632 KB
testcase_28 AC 66 ms
16,000 KB
testcase_29 AC 65 ms
15,744 KB
testcase_30 TLE -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using namespace std;

using i64 = long long;

template<typename T>
struct Segtree{
    int n;
    T op;
    vector<T> elm;
    function<T(T, T)> f;

    Segtree(int n, T init, function<T(T, T)> f, T op = T()) :
        n(n),
        op(op),
        elm(2 * n, init),
        f(f)
    {
        for(int i = n - 1; i >= 1; --i)
            elm[i] = f(elm[2 * i], elm[2 * i + 1]);
    }

    Segtree(int n, vector<T> init, function<T(T, T)> f, T op = T()) :
        n(n),
        op(op),
        elm(2 * n),
        f(f)
    {
        for(int i = 0; i < n; ++i)
            elm[i + n] = init[i];
        for(int i = n - 1; i >= 1; --i)
            elm[i] = f(elm[2 * i], elm[2 * i + 1]);
    }

    void set(int x, T val){
        x += n;
        elm[x] = val;
        while(x >>= 1)
            elm[x] = f(elm[2 * x], elm[2 * x + 1]);
    }

    void update(int x, T val){
        x += n;
        elm[x] = f(elm[x], val);
        while(x >>= 1)
            elm[x] = f(elm[2 * x], elm[2 * x + 1]);
    }

    T get(int x, int y) const{
        T l = op, r = op;
        for(x += n, y += n - 1; x <= y; x >>= 1, y >>= 1){
            if(x & 1)
                l = f(l, elm[x++]);
            if(!(y & 1))
                r = f(elm[y--], r);
        }
        return f(l, r);
    }
};


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

    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] = min(idx, n);
        auto it2 = lower_bound(r.begin(), r.end(), r[i + 1] - x);
        idx = distance(r.begin(), it2);
        prev[i] = max(0, idx - 1);
    }
    /*
    for(auto& x : nex)
        cout << x << " ";
    cout << endl;
    for(auto& x : prev)
        cout << x << " ";
    cout << endl;
     */

    vector<Segtree<int>> a(n, Segtree<int>(n, 0, [](auto x, auto y){return x + y;}, 0));
    vector<Segtree<int>> b(n, Segtree<int>(n, 0, [](auto x, auto y){return x + y;}, 0));

    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].get(max(i, prev[j]), j) != (j - max(i, prev[j])));

            // dp[i][j] : dp[i, i + x][j, j)
            f |= (b[j].get(i + 1, min(nex[i], j + 1)) != (min(nex[i], j + 1) - (i + 1)));
            if(f){
                a[i].update(j, 1);
                b[j].update(i, 1);
            }
            /*
            cout << "[" << i << ",[" << max(i, prev[j]) << "," << j - 1 << "]]  : ";
            cout << "[[" << i + 1 << "," << min(nex[j], j + 1) - 1 << "]," << j << "]  : ";
            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].get(n - 1, n) ? "A" : "B") << endl;
}
0