結果

問題 No.2890 Chiffon
ユーザー Fu_LFu_L
提出日時 2024-09-26 09:36:39
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 1,439 bytes
コンパイル時間 5,112 ms
コンパイル使用メモリ 275,236 KB
実行使用メモリ 7,168 KB
最終ジャッジ日時 2024-09-26 14:44:10
合計ジャッジ時間 5,726 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 49 ms
7,168 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 21 ms
5,376 KB
testcase_35 AC 21 ms
5,376 KB
testcase_36 AC 22 ms
5,376 KB
testcase_37 AC 21 ms
5,376 KB
testcase_38 AC 22 ms
5,376 KB
testcase_39 AC 20 ms
5,376 KB
testcase_40 AC 21 ms
5,376 KB
testcase_41 AC 20 ms
5,376 KB
testcase_42 AC 20 ms
5,376 KB
testcase_43 AC 21 ms
5,376 KB
testcase_44 AC 21 ms
5,376 KB
testcase_45 AC 21 ms
5,376 KB
testcase_46 AC 21 ms
5,376 KB
testcase_47 AC 22 ms
5,376 KB
testcase_48 AC 21 ms
5,376 KB
testcase_49 AC 20 ms
5,376 KB
testcase_50 AC 21 ms
5,376 KB
testcase_51 AC 22 ms
5,376 KB
testcase_52 AC 22 ms
5,376 KB
testcase_53 AC 22 ms
5,376 KB
testcase_54 AC 10 ms
5,376 KB
testcase_55 AC 14 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using P = pair<ll, ll>;
#define rep(i, a, b) for(ll i = a; i < b; ++i)
#define rrep(i, a, b) for(ll i = a; i >= b; --i)
constexpr ll inf = 4e18;
struct SetupIO {
    SetupIO() {
        ios::sync_with_stdio(0);
        cin.tie(0);
        cout << fixed << setprecision(30);
    }
} setup_io;
int main(void) {
    int n, k;
    cin >> n >> k;
    n *= 2;
    vector<int> a(2 * k);
    rep(i, 0, k) {
        cin >> a[i];
        a[k + i] = a[i] + n;
    }
    int mi = 1e9, s = -1;
    rep(i, 0, 2 * k - 1) {
        if(a[i + 1] - a[i] < mi) {
            mi = a[i + 1] - a[i];
            s = i;
        }
    }
    int ans = 0;
    rep(i, a[s] + 1, a[s + 1]) {
        int lower = 1, upper = n / k + 5;
        while(upper - lower > 1) {
            int mid = (lower + upper) / 2;
            int cur = i, idx = s;
            bool res = true;
            rep(j, 0, k - 1) {
                cur += mid;
                if(cur >= a[idx + 2]) {
                    res = false;
                    break;
                }
                cur = max(cur, a[idx + 1] + 1);
                idx++;
            }
            if(i + n - cur < mid) res = false;
            if(res) {
                lower = mid;
            } else {
                upper = mid;
            }
        }
        ans = max(ans, lower);
    }
    if(ans % 2 == 1) ans--;
    cout << ans << '\n';
}
0