結果

問題 No.2890 Chiffon
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-10-02 15:04:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 662 ms / 2,000 ms
コード長 1,437 bytes
コンパイル時間 2,156 ms
コンパイル使用メモリ 205,364 KB
実行使用メモリ 22,784 KB
最終ジャッジ日時 2024-10-02 15:05:22
合計ジャッジ時間 20,588 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 269 ms
14,108 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 662 ms
22,784 KB
testcase_24 AC 201 ms
9,668 KB
testcase_25 AC 143 ms
8,196 KB
testcase_26 AC 293 ms
13,184 KB
testcase_27 AC 361 ms
13,696 KB
testcase_28 AC 12 ms
5,248 KB
testcase_29 AC 29 ms
5,248 KB
testcase_30 AC 175 ms
8,704 KB
testcase_31 AC 401 ms
14,464 KB
testcase_32 AC 339 ms
13,184 KB
testcase_33 AC 20 ms
5,248 KB
testcase_34 AC 577 ms
18,012 KB
testcase_35 AC 562 ms
18,004 KB
testcase_36 AC 584 ms
18,016 KB
testcase_37 AC 549 ms
18,016 KB
testcase_38 AC 543 ms
18,012 KB
testcase_39 AC 550 ms
17,952 KB
testcase_40 AC 578 ms
18,140 KB
testcase_41 AC 585 ms
18,012 KB
testcase_42 AC 581 ms
17,968 KB
testcase_43 AC 552 ms
18,104 KB
testcase_44 AC 616 ms
18,104 KB
testcase_45 AC 584 ms
18,140 KB
testcase_46 AC 615 ms
18,140 KB
testcase_47 AC 579 ms
18,008 KB
testcase_48 AC 583 ms
18,012 KB
testcase_49 AC 574 ms
18,016 KB
testcase_50 AC 615 ms
18,112 KB
testcase_51 AC 582 ms
18,004 KB
testcase_52 AC 582 ms
18,120 KB
testcase_53 AC 624 ms
18,128 KB
testcase_54 AC 353 ms
14,896 KB
testcase_55 AC 596 ms
16,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

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

    ll N, K;
    cin >> N >> K;
    vector<ll> A(K*2+1);
    for (int i=0; i<K; i++){
        cin >> A[i];
        A[i+K] = A[i]+N*2;
    }
    A[K*2] = 1e9;

    ll l=0, r=N+1, c;

    auto f=[&](ll X){
        //dp(i):iで切ったとき次の切れ目
        //dp(i)=(2i+1~2i+2X-1にいちごがあるなら2i+2X, ないなら2i+2X以上の最小のA+1)
        //dp(i)=max(2i+1以上の最小の(A+1)/2, i+X)
        int k=0, L;
        vector<int> dp(N*2+2), v(N*2+2);
        dp[N*2+1] = N*2+1;
        for (int i=1; i<=N*2; i++){
            while (k<K*2 && A[k]<i*2+1) k++;
            dp[i] = min(N*2+1, max(X+i, (A[k]+1)/2));
        }
        iota(v.begin(), v.end(), 0);

        L = K;
        while(L){
            vector<int> pd(N*2+2);
            if (L & 1){
                for (int i=1; i<=N*2+1; i++) v[i] = dp[v[i]];
            }
            for (int i=1; i<=N*2+1; i++) pd[i] = dp[dp[i]];
            swap(pd, dp);
            L >>= 1;
        }
        //for (int i=1; i<=N; i++) cout << v[i] << " ";
        //cout << endl;
        for (int i=1; i<=N; i++){
            if (v[i] <= i+N) return 1;
        }

        return 0;
    };
    
    while(r-l>1){
        c = (l+r)/2;
        if (f(c)) l=c;
        else r=c;
    }

    cout << l*2 << endl;


    return 0;
}
0