結果

問題 No.2890 Chiffon
ユーザー 👑 seekworserseekworser
提出日時 2024-07-02 20:15:01
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 832 bytes
コンパイル時間 2,491 ms
コンパイル使用メモリ 248,372 KB
実行使用メモリ 13,756 KB
最終ジャッジ日時 2024-07-06 11:13:13
合計ジャッジ時間 7,051 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,756 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 158 ms
11,076 KB
testcase_23 AC 36 ms
6,940 KB
testcase_24 AC 19 ms
6,940 KB
testcase_25 AC 45 ms
6,940 KB
testcase_26 AC 42 ms
6,940 KB
testcase_27 AC 3 ms
6,944 KB
testcase_28 AC 4 ms
6,944 KB
testcase_29 AC 13 ms
6,940 KB
testcase_30 AC 21 ms
6,944 KB
testcase_31 AC 36 ms
6,944 KB
testcase_32 AC 4 ms
6,944 KB
testcase_33 TLE -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int main() {
    ll n,k; cin >> n >> k;
    vector<ll> a(k+1);
    for (size_t i=0; i<k; i++) cin >> a[i];
    a[k] = a[0] + 2*n;
    vector<ll> an = a;

    ll ans = 0;
    for (ll s = 0; s < n; s++) {
        ll ok = 0, ng = n;
        auto is_ok = [&] (ll mid) -> bool {
            ll x = 2 * mid;
            ll t = s;
            for (size_t i=0; i<k-1; i++) {
                if (t + x >= an[i+2]) return false;
                t = max(t+x, an[i+1]+1);
            }
            for (size_t i=0; i<n; i++) {}
            return t+x <= s+2*n;
        };
        while (ng - ok > 1) {
            ll mid = (ok + ng) / 2;
            if (is_ok(mid)) ok = mid;
            else ng = mid;
        }
        ans = max(ans, 2*ok);
    }
    cout << ans << endl;
}
0