結果

問題 No.973 余興
ユーザー shibh308shibh308
提出日時 2019-12-06 09:41:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,356 bytes
コンパイル時間 3,479 ms
コンパイル使用メモリ 220,248 KB
実行使用メモリ 13,640 KB
最終ジャッジ日時 2024-12-17 21:55:10
合計ジャッジ時間 92,886 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 230 ms
13,200 KB
testcase_01 AC 235 ms
13,640 KB
testcase_02 AC 227 ms
13,348 KB
testcase_03 AC 235 ms
13,248 KB
testcase_04 AC 243 ms
13,284 KB
testcase_05 AC 237 ms
13,224 KB
testcase_06 AC 242 ms
13,356 KB
testcase_07 AC 239 ms
13,220 KB
testcase_08 AC 234 ms
6,820 KB
testcase_09 AC 240 ms
13,184 KB
testcase_10 AC 226 ms
13,220 KB
testcase_11 AC 1,858 ms
13,204 KB
testcase_12 AC 1,696 ms
13,144 KB
testcase_13 AC 1,667 ms
13,288 KB
testcase_14 AC 1,678 ms
13,216 KB
testcase_15 AC 12 ms
13,220 KB
testcase_16 AC 13 ms
13,216 KB
testcase_17 AC 9 ms
13,264 KB
testcase_18 AC 11 ms
13,216 KB
testcase_19 AC 11 ms
13,220 KB
testcase_20 AC 9 ms
6,816 KB
testcase_21 AC 12 ms
6,816 KB
testcase_22 AC 13 ms
6,820 KB
testcase_23 AC 12 ms
6,820 KB
testcase_24 AC 10 ms
6,816 KB
testcase_25 AC 7 ms
6,820 KB
testcase_26 AC 10 ms
6,816 KB
testcase_27 AC 15 ms
6,816 KB
testcase_28 AC 10 ms
6,816 KB
testcase_29 AC 11 ms
6,816 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 AC 4 ms
6,816 KB
testcase_41 AC 3 ms
6,820 KB
testcase_42 AC 3 ms
6,820 KB
testcase_43 AC 4 ms
6,816 KB
testcase_44 AC 3 ms
6,820 KB
testcase_45 AC 3 ms
6,816 KB
testcase_46 AC 1,305 ms
6,820 KB
testcase_47 AC 1,248 ms
6,816 KB
testcase_48 AC 1,331 ms
6,820 KB
testcase_49 AC 1,457 ms
6,820 KB
testcase_50 AC 1,413 ms
6,820 KB
testcase_51 AC 1,490 ms
6,820 KB
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using namespace std;

using i64 = long long;


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

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

    array<int, 5000> nex, prev;
    for(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);
    }

    bitset<25000000> a;

    for(k = 1; k < n; ++k)
        for(i = 0, j = k; j < n; ++i, ++j){
            bool f = false;
            for(right = max(i, prev[j]); right < j; ++right)
                if(!a[i * 5000 + right]){
                    f = true;
                    break;
                }
            int left_bound = min(nex[i], j + 1);
            if(!f)
                for(left = i + 1; left < left_bound; ++left)
                    if(!a[left * 5000 + j]){
                        f = true;
                        break;
                    }

            a.set(i * 5000 + j, f);
        }

    cout << (a[n - 1] ? "A" : "B") << endl;
}

0