이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "gap.h"
#include <bits/stdc++.h>
#define pb push_back
#define f first
#define sc second
using namespace std;
typedef long long int ll;
typedef string str;
ll findGap(int T, int n){
if(T == 1){
ll ans = 0, a, b;
MinMax(0, 1e18, &a, &b);
while(a+1 < b){
ll _a, _b;
MinMax(a+1, b-1, &_a, &_b);
if(_a == -1) break;
ans = max(ans, max(_a-a, b-_b));
swap(a, _a), swap(b, _b);
}
ans = max(ans, b-a);
return ans;
}
ll ans = 0, a, b;
MinMax(0, 1e18, &a, &b);
ll k = (b-a+n-1)/n;
ll prev = a;
for(ll i = a; i <= b; i+=k){
ll x, y;
MinMax(i, min(i+k-1, b), &x, &y);
if(x == -1) continue;
ans = max(ans, x-prev);
prev = y;
}
return ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |