이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define ld long double
#define pb push_back
#define all(x) begin(x), end(x)
#define SZ(x) (int)(x).size()
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
#include "gap.h"
ll findGap(int T, int N) {
ll MAX = 1e18, mn = 0, mx = 0;
MinMax(0ll, MAX, & mn, & mx);
ll step = (mx - mn) / (N - 1), v = mn, f = mx;
ll ans = step;
while (v < f) {
MinMax(v + 1, v + step, & mn, & mx);
if (mn == -1)
step *= 2;
else {
ans = max(ans, mn - v);
v = mx;
}
}
return ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |