이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "gap.h"
#include <bits/stdc++.h>
#define pb push_back
#define ll long long
#define pii pair<int, int>
#define xx first
#define yy second
using namespace std;
long long findGap(int T, int N)
{
ll minn, maxx;
MinMax(0LL, 1000000000000000000LL, &minn, &maxx);
if (N==2) { return maxx-minn; }
int i=1; int j=N-2;
ll ress=0;
while (i<=j)
{
ll staromin=minn, staromax=maxx;
MinMax(minn+1, maxx-1, &minn, &maxx);
if (j-i==1) { ress=max(ress, maxx-minn); }
ress=max(ress, max(minn-staromin, staromax-maxx));
i++; j--;
}
return ress;
}
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |