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