結果

問題 No.2890 Chiffon
ユーザー noiminoimi
提出日時 2024-09-13 22:06:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,152 bytes
コンパイル時間 2,305 ms
コンパイル使用メモリ 206,712 KB
実行使用メモリ 11,848 KB
最終ジャッジ日時 2024-09-13 22:06:49
合計ジャッジ時間 6,526 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 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 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 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
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 TLE -
testcase_23 AC 757 ms
6,948 KB
testcase_24 AC 610 ms
6,940 KB
testcase_25 AC 1,282 ms
6,944 KB
testcase_26 AC 1,578 ms
6,944 KB
testcase_27 AC 28 ms
6,944 KB
testcase_28 AC 95 ms
6,944 KB
testcase_29 AC 507 ms
6,940 KB
testcase_30 AC 1,829 ms
7,092 KB
testcase_31 AC 1,558 ms
6,940 KB
testcase_32 AC 54 ms
6,944 KB
testcase_33 AC 1,169 ms
11,456 KB
testcase_34 AC 1,089 ms
11,072 KB
testcase_35 AC 1,165 ms
10,316 KB
testcase_36 AC 1,176 ms
10,148 KB
testcase_37 AC 1,172 ms
11,204 KB
testcase_38 AC 1,169 ms
11,712 KB
testcase_39 AC 1,144 ms
11,584 KB
testcase_40 AC 1,163 ms
11,464 KB
testcase_41 AC 1,067 ms
10,328 KB
testcase_42 AC 1,057 ms
11,460 KB
testcase_43 AC 1,296 ms
10,328 KB
testcase_44 AC 1,306 ms
10,088 KB
testcase_45 AC 1,309 ms
10,248 KB
testcase_46 AC 1,305 ms
10,952 KB
testcase_47 AC 1,322 ms
11,848 KB
testcase_48 AC 1,301 ms
10,952 KB
testcase_49 AC 1,120 ms
10,176 KB
testcase_50 AC 1,078 ms
10,180 KB
testcase_51 AC 1,152 ms
10,124 KB
testcase_52 AC 1,184 ms
10,948 KB
testcase_53 AC 1,757 ms
7,340 KB
testcase_54 AC 1,414 ms
9,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define pii pair<int, int>
#define pll pair<ll, ll>
#define vi vector<int>
#define vl vector<ll>
#define ov4(a, b, c, d, name, ...) name
#define rep3(i, a, b, c) for(ll i = (a); i < (b); i += (c))
#define rep2(i, a, b) rep3(i, a, b, 1)
#define rep1(i, n) rep2(i, 0, n)
#define rep0(n) rep1(aaaaa, n)
#define rep(...) ov4(__VA_ARGS__, rep3, rep2, rep1, rep0)(__VA_ARGS__)
#define per(i, a, b) for(ll i = (a) - 1; i >= (b); i--)
#define fore(e, v) for(auto &&e : v)
#define all(a) begin(a), end(a)
#define si(a) (int)(size(a))
#define lb(v, x) (lower_bound(all(v), x) - begin(v))
#define eb emplace_back

template <typename T, typename S> bool chmin(T &a, const S &b) { return a > b ? a = b, 1 : 0; }
template <typename T, typename S> bool chmax(T &a, const S &b) { return a < b ? a = b, 1 : 0; }

const int INF = 1e9 + 100;
const ll INFL = 3e18 + 100;

#define i128 __int128_t

struct _ {
    _() { cin.tie(0)->sync_with_stdio(0), cout.tie(0); }
} __;

int rnd(int l, int r) {
    static mt19937_64 mt(time(NULL));
    return uniform_int_distribution<int>(l, r - 1)(mt);
}
int main() {
    int n, k;
    cin >> n >> k;
    n *= 2;
    vl a(k);
    fore(e, a) cin >> e, --e;
    vi nxt(n);
    a.eb(a[0] + n);
    rep(i, n) {
        int j = a[lb(a, i)];
        nxt[i] = j - i;
    }
    int ok = 0, ng = n / 2;
    // rep(i, n) { cout << nxt[i] << " "; }
    // cout << endl;
    while(ok + 1 < ng) {
        int mid = ok + ng >> 1;
        int d = mid * 2;
        bool flag = false;
        // cerr << d << endl;
        rep((n + k - 1) / k * 10) {
            ll now = rnd(0, n / 2) * 2 + 1;
            ll st = now;
            int rem = now % n;
            rep(k) {
                int add = max(nxt[rem] + 1, d);
                rem += add;
                if(rem >= n) rem -= n;
                now += add;
            }
            // cout << now << endl;
            if(now <= st + n) {
                flag = true;
                break;
            }
        }
        // cout << d << " " << flag << endl;
        (flag ? ok : ng) = mid;
    }
    cout << ok * 2 << endl;
}
0