#include <bits/stdc++.h>
#include "gap.h"
using namespace std;
long long n;
vector<long long> v;
void solve(long long l,long long r)
{
if(l>r)return;
//cout<<l<<" "<<r<<" "<<ll<<" "<<rr<<endl;
long long ans=0;
long long len=r-l+1;
long long b=max(1LL*1,len/n);
for(long long i=l;i<=r;i+=b)
{
long long j=min(i+b-1,r);
long long mn=0,mx=0;
MinMax(i,j,&mn,&mx);
if(mn==-1)continue;
v.push_back(mn);
v.push_back(mx);
solve(mn+1,mx-1);
}
}
long long findGap(int t,int N)
{
n=N;
solve(0,1e18);
long long ans=0;
sort(v.begin(),v.end());
for(int i=1;i<v.size();i++)
ans=max(ans,v[i]-v[i-1]);
return ans;
}
/*int main()
{
long long d=0;
int x;
cin>>x>>nn;
for(int i=1;i<=nn;i++)
{
cin>>a[i];
if(i!=1)d=max(d,a[i]-a[i-1]);
}
long long answer=findGap(1,nn);
cout<<d<<" "<<answer<<endl;
}*/
Compilation message
gap.cpp: In function 'void solve(long long int, long long int)':
gap.cpp:12:15: warning: unused variable 'ans' [-Wunused-variable]
12 | long long ans=0;
| ^~~
gap.cpp: In function 'long long int findGap(int, int)':
gap.cpp:39:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
39 | for(int i=1;i<v.size();i++)
| ~^~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
336 KB |
Output isn't correct |
2 |
Incorrect |
1 ms |
2384 KB |
Output isn't correct |
3 |
Incorrect |
1 ms |
2384 KB |
Output isn't correct |
4 |
Incorrect |
1 ms |
2384 KB |
Output isn't correct |
5 |
Incorrect |
1 ms |
2384 KB |
Output isn't correct |
6 |
Incorrect |
1 ms |
2384 KB |
Output isn't correct |
7 |
Incorrect |
1 ms |
2384 KB |
Output isn't correct |
8 |
Incorrect |
1 ms |
2384 KB |
Output isn't correct |
9 |
Incorrect |
1 ms |
2384 KB |
Output isn't correct |
10 |
Incorrect |
1 ms |
2384 KB |
Output isn't correct |
11 |
Incorrect |
39 ms |
2528 KB |
Output isn't correct |
12 |
Incorrect |
39 ms |
2540 KB |
Output isn't correct |
13 |
Incorrect |
39 ms |
2384 KB |
Output isn't correct |
14 |
Incorrect |
40 ms |
2384 KB |
Output isn't correct |
15 |
Incorrect |
2 ms |
2384 KB |
Output isn't correct |
16 |
Execution timed out |
3094 ms |
2656 KB |
Time limit exceeded |
17 |
Execution timed out |
3046 ms |
2684 KB |
Time limit exceeded |
18 |
Execution timed out |
3073 ms |
2544 KB |
Time limit exceeded |
19 |
Execution timed out |
3067 ms |
2692 KB |
Time limit exceeded |
20 |
Incorrect |
16 ms |
3020 KB |
Output isn't correct |
21 |
Execution timed out |
3056 ms |
2888 KB |
Time limit exceeded |
22 |
Execution timed out |
3068 ms |
2868 KB |
Time limit exceeded |
23 |
Execution timed out |
3060 ms |
2876 KB |
Time limit exceeded |
24 |
Execution timed out |
3062 ms |
2872 KB |
Time limit exceeded |
25 |
Incorrect |
51 ms |
6084 KB |
Output isn't correct |
26 |
Execution timed out |
3068 ms |
2888 KB |
Time limit exceeded |
27 |
Execution timed out |
3061 ms |
2888 KB |
Time limit exceeded |
28 |
Execution timed out |
3058 ms |
2888 KB |
Time limit exceeded |
29 |
Execution timed out |
3062 ms |
2880 KB |
Time limit exceeded |
30 |
Incorrect |
65 ms |
5820 KB |
Output isn't correct |
31 |
Incorrect |
1 ms |
2384 KB |
Output isn't correct |
32 |
Incorrect |
1 ms |
2384 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
2384 KB |
Output is correct |
2 |
Partially correct |
1 ms |
2384 KB |
Partially correct |
3 |
Partially correct |
1 ms |
2384 KB |
Partially correct |
4 |
Partially correct |
1 ms |
2384 KB |
Partially correct |
5 |
Partially correct |
1 ms |
2384 KB |
Partially correct |
6 |
Partially correct |
1 ms |
2384 KB |
Partially correct |
7 |
Partially correct |
2 ms |
2384 KB |
Partially correct |
8 |
Partially correct |
1 ms |
2384 KB |
Partially correct |
9 |
Partially correct |
1 ms |
2384 KB |
Partially correct |
10 |
Partially correct |
1 ms |
2384 KB |
Partially correct |
11 |
Partially correct |
40 ms |
2524 KB |
Partially correct |
12 |
Partially correct |
39 ms |
2384 KB |
Partially correct |
13 |
Partially correct |
39 ms |
2384 KB |
Partially correct |
14 |
Partially correct |
41 ms |
2384 KB |
Partially correct |
15 |
Partially correct |
2 ms |
2384 KB |
Partially correct |
16 |
Execution timed out |
3060 ms |
2592 KB |
Time limit exceeded |
17 |
Execution timed out |
3065 ms |
2636 KB |
Time limit exceeded |
18 |
Execution timed out |
3070 ms |
2700 KB |
Time limit exceeded |
19 |
Execution timed out |
3059 ms |
2684 KB |
Time limit exceeded |
20 |
Partially correct |
17 ms |
3020 KB |
Partially correct |
21 |
Execution timed out |
3057 ms |
2876 KB |
Time limit exceeded |
22 |
Execution timed out |
3058 ms |
2876 KB |
Time limit exceeded |
23 |
Execution timed out |
3061 ms |
2864 KB |
Time limit exceeded |
24 |
Execution timed out |
3060 ms |
2876 KB |
Time limit exceeded |
25 |
Partially correct |
55 ms |
5828 KB |
Partially correct |
26 |
Execution timed out |
3063 ms |
2876 KB |
Time limit exceeded |
27 |
Execution timed out |
3065 ms |
2992 KB |
Time limit exceeded |
28 |
Execution timed out |
3063 ms |
2880 KB |
Time limit exceeded |
29 |
Execution timed out |
3053 ms |
2868 KB |
Time limit exceeded |
30 |
Partially correct |
67 ms |
6084 KB |
Partially correct |
31 |
Partially correct |
1 ms |
2384 KB |
Partially correct |
32 |
Partially correct |
1 ms |
2552 KB |
Partially correct |