이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "gap.h"
// #include "grader.cpp"
using namespace std;
using ll = long long;
ll findGap(int T, int n) {
if (T == 1) {
ll s, t;
MinMax(0, (ll)1e18, &s, &t);
int cnt = 1;
ll ans = 0;
while (++cnt <= ((n + 1) >> 1) && s + 1 < t) {
ll x, y;
MinMax(s + 1, t - 1, &x, &y);
if (x == -1) break;
ans = max({ans, x - s, t - y});
s = x; t = y;
}
return max(ans, t - s);
}
ll s, t;
MinMax(0, LLONG_MAX, &s, &t); //n + 1
ll d = (t - s + n - 3) / (n - 1), mx = 0, a = s;
while (s + 1 < t) {
ll x, y;
MinMax(s + 1, min(s + d, t - 1), &x, &y);
if (x != -1) {
mx = max(mx, x - a); a = y;
}
s += d;
}
return max(mx, t - a);
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |