結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,624 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 WA -
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 6 ms
5,376 KB
testcase_17 WA -
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 WA -
testcase_22 AC 150 ms
11,008 KB
testcase_23 TLE -
testcase_24 AC 1,300 ms
5,376 KB
testcase_25 TLE -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

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(k+1);
    for (size_t i=0; i<k; i++) {
        if (a[i+1] - a[i] <= (2*n) / k + 1) {
            for (size_t j=0; j<k; j++) an[j] = (a[(i+j) % (k+1)] - a[i] + 2*n) % (2*n);
            an[k] = 2*n;
            break;
        }
    }
    ll ans = 0;
    for (ll s = an[0]+1; s < an[1]; 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);
            }
            ll tmp = 0;
            random_device seed_gen;
            mt19937_64 rng(seed_gen());
            for (size_t i=0; i<n; i++) {
                // some O(N) operation
                tmp += rng() % (2*n);
            }
            return t+x <= s+2*n && tmp < (1LL << 60);
        };
        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