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 <bits/stdc++.h>
#include "gap.h"
using namespace std;
typedef long long ll;
const ll inf = 1e18;
ll findGap(int T, int N){
ll lo, hi, t_lo, t_hi, ans = 1, cnt = 2;
MinMax(0, inf, &lo, &hi);
while(lo < hi){
t_lo = lo, t_hi = hi;
//cout << cnt << " " << N << endl;
if(cnt == N){
ans = max(ans, hi - lo);
break;
}
if(lo + 1 >= hi - 1) break;
MinMax(lo + 1, hi - 1, &lo, &hi);
ans = max(ans, t_hi - hi);
ans = max(ans, lo - t_lo);
cnt += 2;
}
return ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |