이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "gap.h"
#include <bits/stdc++.h>
using namespace std;
long long v[1000005],i,j;
long long findGap(int T, int N)
{
i=0;
long long c=0,d=1,c1=0,d1=1,o=0;
long long *a=&c,*b=&d;
while (i<N)
{
MinMax(c1,d1,a,b);
if (*a+*b==-2)
{
d1++;
d++;
*b=d;
continue;
}
c1=*a;
c1++;
d1=c+1;
v[i]=*a;
c=*a;
if (i)
{
o=max(o,v[i]-v[i-1]);
}
i++;
c++;
d=c+1;
*b=d;
}
return o;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |