이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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 = 0;
MinMax(0, inf, &lo, &hi);
while(lo < hi){
t_lo = lo, t_hi = hi;
MinMax(lo + 1, hi - 1, &lo, &hi);
if(lo == - 1){
ans = max(ans, t_hi - t_lo);
break;
}
ans = max(ans, t_hi - hi);
ans = max(ans, lo - t_lo);
}
return ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |