이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
using namespace std;
#include "gap.h"
#ifndef EVAL
#include "grader.cpp"
#endif
#define ar array
typedef long long ll;
const ll inf = 1e18;
ll findGap(int t, int n){
if(t == 1){
ll l = 0, r = inf, mn, mx;
vector<ll> a;
for(int i=0;i<=n/2 && (int)a.size() < n;i++){
MinMax(l, r, &mn, &mx);
if(mn == -1) break;
a.push_back(mn);
a.push_back(mx);
l = mn + 1, r = mx - 1;
}
sort(a.begin(), a.end());
ll res = 0;
for(int i=1;i<(int)a.size();i++){
res = max(res, a[i] - a[i-1]);
}
return res;
}
ll l = 0, r = inf, mn, mx;
MinMax(l, r, &mn, &mx);
ll B = (mx - mn + n - 1) / n, last = mn, R = mx;
ll res = B, cnt = 1;
for(l=mn;cnt<n;l=r+1){
cnt++;
r = l+B-1;
MinMax(l, r, &mn, &mx);
if(mn == -1 || mx == -1) continue;
res = max(res, mn - last);
last = mx;
}
res = max(res, R - last);
return res;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |