#include<bits/stdc++.h>
#include "gap.h"
#define MAXN 600007
using namespace std;
const long long inf=1e18;
long long *l,*r,*ll,*rr;
long long d,ans;
vector<long long> v;
long long findGap(int T, int N){
l=new long long();
r=new long long();
MinMax(1, inf, l,r);
if(T==1){
v.clear();
v.push_back(*l);
v.push_back(*r);
for(int i=1;i<=N/2-(1-N%2);i++){
ll=new long long();
rr=new long long();
if(*l+1>*r-1)break;
MinMax((*l)+1,(*r)-1,ll,rr);
if((*ll)==-1)break;
v.push_back(*ll);
v.push_back(*rr);
l=ll; r=rr;
if(*l==*r)break;
}
sort(v.begin(),v.end());
ans=1;
for(int i=0;i<v.size()-1;i++){
ans=max(ans,v[i+1]-v[i]);
}
return ans;
}
d=ans=(long long) (*r-*l)/(N-1);
while(*l!=*r){
while(true){
ll=new long long();
rr=new long long();
MinMax((*l)+1,(*l)+d+1,ll,rr);
if((*ll)!=-1)break;
d*=2;
}
ans=max(ans,*ll-*l);
d=ans;
l=rr;
}
return ans;
}
Compilation message
gap.cpp: In function 'long long int findGap(int, int)':
gap.cpp:47:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
47 | for(int i=0;i<v.size()-1;i++){
| ~^~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
344 KB |
Output is correct |
2 |
Correct |
1 ms |
344 KB |
Output is correct |
3 |
Correct |
0 ms |
344 KB |
Output is correct |
4 |
Correct |
0 ms |
344 KB |
Output is correct |
5 |
Correct |
0 ms |
344 KB |
Output is correct |
6 |
Correct |
0 ms |
344 KB |
Output is correct |
7 |
Correct |
0 ms |
344 KB |
Output is correct |
8 |
Correct |
0 ms |
344 KB |
Output is correct |
9 |
Correct |
0 ms |
344 KB |
Output is correct |
10 |
Correct |
1 ms |
344 KB |
Output is correct |
11 |
Correct |
1 ms |
344 KB |
Output is correct |
12 |
Correct |
1 ms |
344 KB |
Output is correct |
13 |
Correct |
1 ms |
344 KB |
Output is correct |
14 |
Correct |
1 ms |
344 KB |
Output is correct |
15 |
Correct |
1 ms |
344 KB |
Output is correct |
16 |
Correct |
8 ms |
1408 KB |
Output is correct |
17 |
Correct |
8 ms |
1492 KB |
Output is correct |
18 |
Correct |
10 ms |
1492 KB |
Output is correct |
19 |
Correct |
8 ms |
1492 KB |
Output is correct |
20 |
Correct |
7 ms |
1560 KB |
Output is correct |
21 |
Correct |
33 ms |
5068 KB |
Output is correct |
22 |
Correct |
37 ms |
5060 KB |
Output is correct |
23 |
Correct |
31 ms |
5060 KB |
Output is correct |
24 |
Correct |
31 ms |
5060 KB |
Output is correct |
25 |
Correct |
30 ms |
5068 KB |
Output is correct |
26 |
Correct |
40 ms |
5060 KB |
Output is correct |
27 |
Correct |
31 ms |
5132 KB |
Output is correct |
28 |
Correct |
37 ms |
5060 KB |
Output is correct |
29 |
Correct |
30 ms |
5068 KB |
Output is correct |
30 |
Correct |
28 ms |
5068 KB |
Output is correct |
31 |
Correct |
0 ms |
344 KB |
Output is correct |
32 |
Correct |
0 ms |
344 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
1 ms |
344 KB |
Output is correct |
3 |
Correct |
0 ms |
344 KB |
Output is correct |
4 |
Correct |
0 ms |
344 KB |
Output is correct |
5 |
Correct |
0 ms |
344 KB |
Output is correct |
6 |
Correct |
0 ms |
344 KB |
Output is correct |
7 |
Correct |
0 ms |
344 KB |
Output is correct |
8 |
Correct |
0 ms |
344 KB |
Output is correct |
9 |
Correct |
0 ms |
344 KB |
Output is correct |
10 |
Correct |
0 ms |
344 KB |
Output is correct |
11 |
Correct |
0 ms |
344 KB |
Output is correct |
12 |
Correct |
1 ms |
344 KB |
Output is correct |
13 |
Correct |
0 ms |
344 KB |
Output is correct |
14 |
Correct |
1 ms |
340 KB |
Output is correct |
15 |
Correct |
1 ms |
412 KB |
Output is correct |
16 |
Correct |
4 ms |
856 KB |
Output is correct |
17 |
Correct |
4 ms |
600 KB |
Output is correct |
18 |
Correct |
5 ms |
600 KB |
Output is correct |
19 |
Correct |
5 ms |
600 KB |
Output is correct |
20 |
Correct |
4 ms |
636 KB |
Output is correct |
21 |
Correct |
17 ms |
1624 KB |
Output is correct |
22 |
Correct |
17 ms |
1880 KB |
Output is correct |
23 |
Correct |
26 ms |
1880 KB |
Output is correct |
24 |
Correct |
17 ms |
1624 KB |
Output is correct |
25 |
Correct |
44 ms |
7248 KB |
Output is correct |
26 |
Correct |
26 ms |
1880 KB |
Output is correct |
27 |
Correct |
19 ms |
1880 KB |
Output is correct |
28 |
Correct |
17 ms |
1872 KB |
Output is correct |
29 |
Correct |
17 ms |
1880 KB |
Output is correct |
30 |
Correct |
9 ms |
1284 KB |
Output is correct |
31 |
Correct |
0 ms |
344 KB |
Output is correct |
32 |
Correct |
0 ms |
344 KB |
Output is correct |