# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
45834 |
2018-04-16T08:50:25 Z |
gnoor |
Gap (APIO16_gap) |
C++17 |
|
85 ms |
2552 KB |
#include "gap.h"
#include <cstdio>
#ifdef debug
#include "grader.cpp"
#endif
#include <vector>
#include <algorithm>
using namespace std;
long long findGap(int T, int N)
{
if (T==1) {
vector<long long> tbl;
long long mn,mx;
long long left=0;
long long rgt=1e18;
int x=(N+1)/2;
for (int i=0;i<x;i++) {
MinMax(left,rgt,&mn,&mx);
tbl.push_back(mn);
if (mx!=mn) tbl.push_back(mx);
left=mn+1;
rgt=mx-1;
}
sort(tbl.begin(),tbl.end());
long long ans=0;
for (int i=1;i<N;i++) {
//printf("%lld ",tbl[i]);
ans=max(ans,tbl[i]-tbl[i-1]);
}
//printf("\n");
return ans;
} else {
long long mn,mx;
MinMax(0,1e18,&mn,&mx);
if (N==2) return mx-mn;
long long blkSz=(mn-mn-1)/(N-2);
long long ans=0;
long long left=mn;
long long a,b;
for (long long i=mn+1;i<mx;i+=blkSz) {
MinMax(i,min(i+blkSz-1,mx-1),&a,&b);
if (a==-1) continue;
ans=max(ans,a-left);
left=b;
}
ans=max(ans,mx-left);
return ans;
}
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
248 KB |
Output is correct |
2 |
Correct |
2 ms |
356 KB |
Output is correct |
3 |
Correct |
2 ms |
408 KB |
Output is correct |
4 |
Correct |
2 ms |
484 KB |
Output is correct |
5 |
Correct |
2 ms |
484 KB |
Output is correct |
6 |
Correct |
2 ms |
536 KB |
Output is correct |
7 |
Correct |
2 ms |
596 KB |
Output is correct |
8 |
Correct |
2 ms |
596 KB |
Output is correct |
9 |
Correct |
2 ms |
612 KB |
Output is correct |
10 |
Correct |
2 ms |
612 KB |
Output is correct |
11 |
Correct |
2 ms |
612 KB |
Output is correct |
12 |
Correct |
2 ms |
620 KB |
Output is correct |
13 |
Correct |
3 ms |
620 KB |
Output is correct |
14 |
Correct |
2 ms |
620 KB |
Output is correct |
15 |
Correct |
2 ms |
620 KB |
Output is correct |
16 |
Correct |
16 ms |
1148 KB |
Output is correct |
17 |
Correct |
16 ms |
1148 KB |
Output is correct |
18 |
Correct |
16 ms |
1148 KB |
Output is correct |
19 |
Correct |
16 ms |
1148 KB |
Output is correct |
20 |
Correct |
14 ms |
1148 KB |
Output is correct |
21 |
Correct |
61 ms |
2544 KB |
Output is correct |
22 |
Correct |
85 ms |
2548 KB |
Output is correct |
23 |
Correct |
60 ms |
2548 KB |
Output is correct |
24 |
Correct |
61 ms |
2548 KB |
Output is correct |
25 |
Correct |
53 ms |
2548 KB |
Output is correct |
26 |
Correct |
62 ms |
2548 KB |
Output is correct |
27 |
Correct |
63 ms |
2548 KB |
Output is correct |
28 |
Correct |
62 ms |
2548 KB |
Output is correct |
29 |
Correct |
60 ms |
2552 KB |
Output is correct |
30 |
Correct |
46 ms |
2552 KB |
Output is correct |
31 |
Correct |
2 ms |
2552 KB |
Output is correct |
32 |
Correct |
2 ms |
2552 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
2552 KB |
Output is correct |
2 |
Runtime error |
2 ms |
2552 KB |
Execution failed because the return code was nonzero |
3 |
Runtime error |
2 ms |
2552 KB |
Execution failed because the return code was nonzero |
4 |
Runtime error |
2 ms |
2552 KB |
Execution failed because the return code was nonzero |
5 |
Runtime error |
2 ms |
2552 KB |
Execution failed because the return code was nonzero |
6 |
Runtime error |
2 ms |
2552 KB |
Execution failed because the return code was nonzero |
7 |
Runtime error |
2 ms |
2552 KB |
Execution failed because the return code was nonzero |
8 |
Runtime error |
2 ms |
2552 KB |
Execution failed because the return code was nonzero |
9 |
Runtime error |
2 ms |
2552 KB |
Execution failed because the return code was nonzero |
10 |
Runtime error |
2 ms |
2552 KB |
Execution failed because the return code was nonzero |
11 |
Runtime error |
2 ms |
2552 KB |
Execution failed because the return code was nonzero |
12 |
Runtime error |
2 ms |
2552 KB |
Execution failed because the return code was nonzero |
13 |
Runtime error |
2 ms |
2552 KB |
Execution failed because the return code was nonzero |
14 |
Runtime error |
2 ms |
2552 KB |
Execution failed because the return code was nonzero |
15 |
Runtime error |
3 ms |
2552 KB |
Execution failed because the return code was nonzero |
16 |
Runtime error |
9 ms |
2552 KB |
Execution failed because the return code was nonzero |
17 |
Runtime error |
9 ms |
2552 KB |
Execution failed because the return code was nonzero |
18 |
Runtime error |
9 ms |
2552 KB |
Execution failed because the return code was nonzero |
19 |
Runtime error |
13 ms |
2552 KB |
Execution failed because the return code was nonzero |
20 |
Runtime error |
5 ms |
2552 KB |
Execution failed because the return code was nonzero |
21 |
Runtime error |
49 ms |
2552 KB |
Execution failed because the return code was nonzero |
22 |
Runtime error |
28 ms |
2552 KB |
Execution failed because the return code was nonzero |
23 |
Runtime error |
28 ms |
2552 KB |
Execution failed because the return code was nonzero |
24 |
Runtime error |
28 ms |
2552 KB |
Execution failed because the return code was nonzero |
25 |
Runtime error |
35 ms |
2552 KB |
Execution failed because the return code was nonzero |
26 |
Runtime error |
28 ms |
2552 KB |
Execution failed because the return code was nonzero |
27 |
Runtime error |
29 ms |
2552 KB |
Execution failed because the return code was nonzero |
28 |
Runtime error |
50 ms |
2552 KB |
Execution failed because the return code was nonzero |
29 |
Runtime error |
28 ms |
2552 KB |
Execution failed because the return code was nonzero |
30 |
Runtime error |
14 ms |
2552 KB |
Execution failed because the return code was nonzero |
31 |
Runtime error |
2 ms |
2552 KB |
Execution failed because the return code was nonzero |
32 |
Runtime error |
2 ms |
2552 KB |
Execution failed because the return code was nonzero |