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 "gap.h"
#include<bits/stdc++.h>
using namespace std ;
typedef long long ll ;
const ll inf = 1e18 ;
vector<ll> v ;
void push(ll cst)
{
if(cst>-1)v.emplace_back(cst);
}
ll findGap(int T, int N)
{
ll mn,mx,l=1,r=inf ;
if(T==1)
{
while(l!=-1)
{
MinMax(l,r,&mn,&mx);
push(mn),push(mx);
l=mn+1,r=mx-1;
}
}
else
{
MinMax(l,r,&mn,&mx);
l=mn,r=mx;
v.emplace_back(mn),v.emplace_back(mx);
ll len = (mx-mn)/(N-2);
for(ll i=mn+1;i<mx;i+=len)
{
MinMax(i,i+len,&mn,&mx);
push(mn),push(mx);
}
}
sort(v.begin(),v.end());
ll ret = 0 ;
for(int i=1;i<v.size();i++)ret=max(ret,v[i]-v[i-1]);
return ret ;
}
Compilation message (stderr)
gap.cpp: In function 'll findGap(int, int)':
gap.cpp:37:18: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i=1;i<v.size();i++)ret=max(ret,v[i]-v[i-1]);
~^~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |