This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "gap.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
vector<ll> v;
long long findGap(int T, int N) {
ll mx = 0;
if(T == 2){
ll lo,hi;
MinMax(1, 1e18, &lo, &hi);
v.push_back(lo);
v.push_back(hi);
ll big = hi;
ll sure = (hi-lo)/(N-1);
ll cur = lo;
mx = sure;
while(cur < big){
MinMax(cur, cur+sure, &lo, &hi);
if(lo == -1){
cur = cur + sure;
continue;
}
v.push_back(lo);
v.push_back(hi);
cur = hi+1;
}
}else{
ll lo = 1, hi = 1e18;
int rem =(N+1)/2;
while(rem--){
ll a , b;
MinMax(lo,hi,&a,&b);
if(a == -1)
break;
v.push_back(a);
v.push_back(b);
lo = a+1;
hi = b-1;
}
}
sort(v.begin(),v.end());
for (int i = 0; i+1 < v.size(); ++i){
mx = max(mx,v[i+1]-v[i]);
}
return mx;
}
Compilation message (stderr)
gap.cpp: In function 'long long int findGap(int, int)':
gap.cpp:46:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int i = 0; i+1 < v.size(); ++i){
^
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |