結果

問題 No.2890 Chiffon
ユーザー Fu_LFu_L
提出日時 2024-09-26 09:35:39
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,411 bytes
コンパイル時間 4,921 ms
コンパイル使用メモリ 275,488 KB
実行使用メモリ 7,168 KB
最終ジャッジ日時 2024-09-26 09:35:49
合計ジャッジ時間 9,168 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,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 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 2 ms
5,376 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 2 ms
5,376 KB
testcase_18 WA -
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 AC 56 ms
7,168 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 WA -
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 WA -
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 24 ms
5,376 KB
testcase_34 AC 24 ms
5,376 KB
testcase_35 AC 24 ms
5,376 KB
testcase_36 AC 23 ms
5,376 KB
testcase_37 AC 24 ms
5,376 KB
testcase_38 AC 24 ms
5,376 KB
testcase_39 AC 23 ms
5,376 KB
testcase_40 AC 24 ms
5,376 KB
testcase_41 AC 24 ms
5,376 KB
testcase_42 AC 23 ms
5,376 KB
testcase_43 AC 24 ms
5,376 KB
testcase_44 AC 24 ms
5,376 KB
testcase_45 AC 24 ms
5,376 KB
testcase_46 AC 24 ms
5,376 KB
testcase_47 AC 24 ms
5,376 KB
testcase_48 AC 24 ms
5,376 KB
testcase_49 AC 23 ms
5,376 KB
testcase_50 AC 24 ms
5,376 KB
testcase_51 AC 24 ms
5,376 KB
testcase_52 AC 24 ms
5,376 KB
testcase_53 AC 12 ms
5,376 KB
testcase_54 AC 17 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);
    }
    cout << ans << '\n';
}
0