이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#ifdef atom
#include "grader.cpp"
#else
#include "gap.h"
#endif
using namespace std;
typedef long long ll;
typedef pair<int, int> ii;
#define X first
#define Y second
#define vi vector<int>
#define vvi vector< vi >
#define vii vector< ii >
#define mp make_pair
#define pb push_back
long long findGap(int T, int n)
{
ll left, right;
MinMax(0, 1e18, &left, &right);
ll best = 0;
if(T == 1)
{
ll lmin = left, lmax = right;
while(1)
{
ll mmin, mmax;
MinMax(lmin+1, lmax-1, &mmin, &mmax);
if(mmin == -1)
{
best = max(best, lmax-lmin);
break;
}
best = max(best, lmax-mmax);
best = max(best, mmin-lmin);
if(mmin == mmax) break;
if(mmin+1 == mmax) break;
lmin = mmin; lmax = mmax;
}
}
return best;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |