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;
long long a[100005];
long long findGap(int T, int n)
{
if(T==1)
{
long long L,R,res=1e18,preL=-1,preR=1e18+1;
while(1)
{
MinMax(preL+1,preR-1,&L,&R);
res=max(res,max(L-preL,preR-R));
L=preL;
R=preR;
if(L==-1||L==R)
break;
}
return res;
}
}
Compilation message (stderr)
gap.cpp:2:17: warning: extra tokens at end of #include directive
#include "gap.h";
^
gap.cpp: In function 'long long int findGap(int, int)':
gap.cpp:23:1: warning: control reaches end of non-void function [-Wreturn-type]
}
^
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |