結果

問題 No.2890 Chiffon
ユーザー tottoripapertottoripaper
提出日時 2024-09-15 22:10:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,586 bytes
コンパイル時間 2,315 ms
コンパイル使用メモリ 207,084 KB
実行使用メモリ 30,576 KB
最終ジャッジ日時 2024-09-15 22:11:05
合計ジャッジ時間 27,647 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 4 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 TLE -
testcase_23 AC 507 ms
15,932 KB
testcase_24 AC 434 ms
13,208 KB
testcase_25 AC 943 ms
23,120 KB
testcase_26 AC 1,133 ms
24,332 KB
testcase_27 AC 23 ms
5,376 KB
testcase_28 AC 82 ms
5,376 KB
testcase_29 AC 514 ms
14,308 KB
testcase_30 AC 1,411 ms
25,960 KB
testcase_31 AC 1,019 ms
22,912 KB
testcase_32 AC 49 ms
5,376 KB
testcase_33 AC 1,974 ms
28,164 KB
testcase_34 AC 1,846 ms
28,168 KB
testcase_35 AC 1,912 ms
28,132 KB
testcase_36 AC 1,888 ms
28,172 KB
testcase_37 AC 1,889 ms
28,168 KB
testcase_38 AC 1,995 ms
28,148 KB
testcase_39 AC 1,985 ms
28,304 KB
testcase_40 AC 1,946 ms
28,148 KB
testcase_41 AC 1,964 ms
28,152 KB
testcase_42 AC 1,933 ms
28,272 KB
testcase_43 AC 1,892 ms
28,256 KB
testcase_44 AC 1,878 ms
28,292 KB
testcase_45 AC 1,963 ms
28,292 KB
testcase_46 AC 1,961 ms
28,144 KB
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 AC 1,981 ms
28,268 KB
testcase_51 AC 1,943 ms
28,288 KB
testcase_52 AC 1,973 ms
28,168 KB
testcase_53 AC 1,224 ms
26,724 KB
testcase_54 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using ll = std::int64_t;

int main(){
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);

    ll N, K;
    std::cin >> N >> K;

    std::vector<int> A(2 * K);
    for(int i=0;i<K;i++){
        std::cin >> A[i];
        A[i + K] = A[i] + 2 * N;
    }

    auto mul = [](std::vector<int> a, std::vector<int> b){
        std::vector<int> res(a.size());
        for(int i=0;i<a.size();i++){
            res[i] = b[a[i]];
        }
        return res;
    };

    auto pow = [&mul](std::vector<int> a, int n){
        std::vector<int> res(a.size());
        std::iota(res.begin(), res.end(), 0);       
        while(n > 0){
            if(n & 1){res = mul(res, a);}
            a = mul(a, a);
            n /= 2;
        }
        return res;
    };

    auto f = [&](int x){
        std::vector<int> B(2 * N + 1);
        B[2 * N] = 2 * N;
        for(int i=0;i<2*N;i++){
            int j = std::lower_bound(A.begin(), A.end(), 2 * i) - A.begin();
            if(j == A.size()){
                B[i] = 2 * N;
            }else{
                B[i] = std::min<int>(std::max((A[j] + 1) / 2, i + x), 2 * N);
            }
        }

        std::vector<int> C = pow(B, K);

        for(int i=0;i<N;i++){
            if(C[i] <= i + N){
                return true;
            }
        }
        return false;
    };

    int ok = 1, ng = N + 1;
    while(ng - ok > 1){
        int m = (ok + ng) / 2;
        if(f(m)){
            ok = m;
        }else{
            ng = m;
        }
    }

    int res = ok * 2;
    std::cout << res << std::endl;
}
0