이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<iostream>
#include<algorithm>
#include<vector>
#include"gap.h"
using namespace std;
typedef long long ll;
#define chmin(a,b) a=min(a,b)
#define chmax(a,b) a=max(a,b)
#define rep(i,n) for(int i=0;i<n;i++)
#define mod 1000000007
#define mad(a,b) a=(a+b)%mod
/*
ll a[100010],n,m;
void MinMax(ll s,ll t,ll &mn,ll &mx){
m++;
ll l,r,mid;
l=-1,r=n;
while(l<r-1){
mid=(l+r)>>1;
if(a[mid]>=s)r=mid;
else l=mid;
}
mn=a[r];
l=-1,r=n;
while(l<r-1){
mid=(l+r)>>1;
if(a[mid]<=t)l=mid;
else r=mid;
}
mx=a[l];
}*/
ll findGap(int T,int N){
if(N<10)return -1;
ll A[100010];
A[0]=-1,A[N+1]=1e18+1;
ll l=0,r=N+1;
while(l+1<=r-1){
ll mn,mx;
MinMax(A[l]+1,A[r]-1,&mn,&mx);
l++,r--;
A[l]=mn,A[r]=mx;
}
ll ans=0;
for(int i=1;i<=N-1;i++)ans=max(ans,A[i+1]-A[i]);
return ans;
}
/*
int main(){
n=100000;
rep(i,n)a[i]=rand()%mod;
sort(a,a+n);
ll ans=0;
rep(i,n-1)chmax(ans,a[i+1]-a[i]);
m=0;
cout<<ans<<endl;
cout<<findGap(0,n)<<endl;
cout<<"m="<<m<<endl;
}*/
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |