# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
69164 |
2018-08-20T08:30:47 Z |
FedericoS |
Gap (APIO16_gap) |
C++14 |
|
2000 ms |
2956 KB |
#include "gap.h"
#include <vector>
#include <iostream>
#include <assert.h>
#include <algorithm>
using namespace std;
typedef long long ll;
ll INF=1e18;
ll S=1e12;
ll K=100;
ll x,y;
vector<ll> V;
void F(ll a, ll b){
MinMax(a,b,&x,&y);
if(x==-1)return;
if(a==b)
V.push_back(a);
else{
ll p=(b-a+K-1)/K;
for(ll i=a;i<=b;i+=p)
F(i,min(i+p-1,b));
}
}
long long findGap(int T, int N)
{
if(T==1){
y=INF;
for(int i=0;i<(N+1)/2;i++){
MinMax(x,y,&x,&y);
if(x==-1)break;
V.push_back(x);
V.push_back(y);
x++;
y--;
if(x>y)break;
}
sort(V.begin(),V.end());
x=0;
for(int i=0;i<V.size()-1;i++)
x=max(x,V[i+1]-V[i]);
return x;
}
MinMax(INF,INF,&x,&y);
if(x!=-1)
V.push_back(INF);
for(ll i=0;i<INF;i+=S)
F(i,i+S-1);
sort(V.begin(),V.end());
x=0;
for(int i=0;i<V.size()-1;i++)
x=max(x,V[i+1]-V[i]);
for(ll d:V)
cout<<d<<" ";
cout<<endl;
return x;
}
/*
1 6
1 2 5 7 8 12
*/
Compilation message
gap.cpp: In function 'long long int findGap(int, int)':
gap.cpp:50:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i=0;i<V.size()-1;i++)
~^~~~~~~~~~~
gap.cpp:67:15: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i=0;i<V.size()-1;i++)
~^~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
128 KB |
Output is correct |
2 |
Correct |
2 ms |
380 KB |
Output is correct |
3 |
Correct |
2 ms |
400 KB |
Output is correct |
4 |
Correct |
3 ms |
516 KB |
Output is correct |
5 |
Correct |
2 ms |
516 KB |
Output is correct |
6 |
Correct |
2 ms |
516 KB |
Output is correct |
7 |
Correct |
2 ms |
516 KB |
Output is correct |
8 |
Correct |
2 ms |
516 KB |
Output is correct |
9 |
Correct |
2 ms |
516 KB |
Output is correct |
10 |
Correct |
2 ms |
620 KB |
Output is correct |
11 |
Correct |
5 ms |
620 KB |
Output is correct |
12 |
Correct |
3 ms |
620 KB |
Output is correct |
13 |
Correct |
3 ms |
656 KB |
Output is correct |
14 |
Correct |
4 ms |
656 KB |
Output is correct |
15 |
Correct |
3 ms |
656 KB |
Output is correct |
16 |
Correct |
17 ms |
1080 KB |
Output is correct |
17 |
Correct |
20 ms |
1080 KB |
Output is correct |
18 |
Correct |
18 ms |
1080 KB |
Output is correct |
19 |
Correct |
16 ms |
1080 KB |
Output is correct |
20 |
Correct |
14 ms |
1080 KB |
Output is correct |
21 |
Correct |
73 ms |
2592 KB |
Output is correct |
22 |
Correct |
69 ms |
2592 KB |
Output is correct |
23 |
Correct |
65 ms |
2592 KB |
Output is correct |
24 |
Correct |
67 ms |
2592 KB |
Output is correct |
25 |
Correct |
58 ms |
2592 KB |
Output is correct |
26 |
Correct |
75 ms |
2592 KB |
Output is correct |
27 |
Correct |
86 ms |
2592 KB |
Output is correct |
28 |
Correct |
63 ms |
2592 KB |
Output is correct |
29 |
Correct |
63 ms |
2592 KB |
Output is correct |
30 |
Correct |
47 ms |
2592 KB |
Output is correct |
31 |
Correct |
2 ms |
2592 KB |
Output is correct |
32 |
Correct |
2 ms |
2592 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
24 ms |
2592 KB |
Expected EOLN |
2 |
Incorrect |
51 ms |
2592 KB |
Expected EOLN |
3 |
Incorrect |
58 ms |
2592 KB |
Expected EOLN |
4 |
Incorrect |
48 ms |
2592 KB |
Expected EOLN |
5 |
Incorrect |
51 ms |
2592 KB |
Expected EOLN |
6 |
Incorrect |
93 ms |
2592 KB |
Expected EOLN |
7 |
Incorrect |
103 ms |
2592 KB |
Expected EOLN |
8 |
Incorrect |
102 ms |
2592 KB |
Expected EOLN |
9 |
Incorrect |
92 ms |
2592 KB |
Expected EOLN |
10 |
Incorrect |
80 ms |
2592 KB |
Expected EOLN |
11 |
Incorrect |
312 ms |
2592 KB |
Expected EOLN |
12 |
Incorrect |
267 ms |
2592 KB |
Expected EOLN |
13 |
Incorrect |
251 ms |
2592 KB |
Expected EOLN |
14 |
Incorrect |
316 ms |
2592 KB |
Expected EOLN |
15 |
Incorrect |
196 ms |
2592 KB |
Expected EOLN |
16 |
Execution timed out |
2061 ms |
2592 KB |
Time limit exceeded |
17 |
Execution timed out |
2059 ms |
2592 KB |
Time limit exceeded |
18 |
Execution timed out |
2069 ms |
2592 KB |
Time limit exceeded |
19 |
Execution timed out |
2076 ms |
2592 KB |
Time limit exceeded |
20 |
Incorrect |
184 ms |
2592 KB |
Expected EOLN |
21 |
Execution timed out |
2057 ms |
2592 KB |
Time limit exceeded |
22 |
Execution timed out |
2054 ms |
2592 KB |
Time limit exceeded |
23 |
Execution timed out |
2063 ms |
2592 KB |
Time limit exceeded |
24 |
Execution timed out |
2016 ms |
2592 KB |
Time limit exceeded |
25 |
Execution timed out |
2051 ms |
2592 KB |
Time limit exceeded |
26 |
Execution timed out |
2035 ms |
2592 KB |
Time limit exceeded |
27 |
Execution timed out |
2076 ms |
2592 KB |
Time limit exceeded |
28 |
Execution timed out |
2059 ms |
2592 KB |
Time limit exceeded |
29 |
Execution timed out |
2075 ms |
2592 KB |
Time limit exceeded |
30 |
Incorrect |
288 ms |
2956 KB |
Expected EOLN |
31 |
Incorrect |
82 ms |
2956 KB |
Expected EOLN |
32 |
Incorrect |
89 ms |
2956 KB |
Expected EOLN |