제출 #1083428

#제출 시각아이디문제언어결과실행 시간메모리
1083428dong_gasGap (APIO16_gap)C++17
30 / 100
66 ms4364 KiB
#include <bits/stdc++.h>

#include "gap.h"

using namespace std;
using ll = long long;
using pll = pair<ll, ll>;

ll a[100201];
ll l[100201], r[100201];
pll b[100201];
const ll inf = 1'000'000'000'000'000'000;

ll findGap(int T, int n) {
    if (T == 1) {
        ll L = 1, R = n, mn, mx;
        ll low = 0, high = 1e18;
        while (L < R) {
            MinMax(low, high, &mn, &mx);
            a[L++] = mn, a[R--] = mx;
            low = mn + 1, high = mx - 1;
        }
        if (L == R) {
            MinMax(low, high, &mn, &mx);
            a[L] = mn;
        }
        ll ret = 0;
        for (int i = 2; i <= n; i++) ret = max(ret, a[i] - a[i - 1]);
        return ret;
    }
    ll mn, mx, ret = 0;
    MinMax(0, inf, &mn, &mx);
    a[1] = mn, a[n] = mx;
    if (n == 2) {
        return mx - mn;
    }
    ll gap = (mx - mn + 1 + n) / (n), cnt = 1;
    for (ll i = a[1] + 1;; i += gap, cnt++) {
        l[cnt] = i, r[cnt] = i + gap - 1;
        if (r[cnt] > a[n]) {
            r[cnt] = a[n];
            break;
        }
    }
    for (int i = 1; i <= cnt; i++) {
        MinMax(l[i], r[i], &mn, &mx);
        b[i] = {mn, mx};
    }
    ll bef = a[1];
    for (int i = 1; i < n; i++) {
        if (b[i].first == -1) continue;
        if (bef != -1) {
            MinMax(bef, b[i].first, &mn, &mx);
            ret = max(ret, mx - mn);
        }
        bef = b[i].second;
    }
    return ret;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...