#include "bits/stdc++.h"
#include "gap.h"
using namespace std;
#define ff first
#define ss second
#define all(v) v.begin(), v.end()
#define ll long long
#define pb push_back
#define pii pair<int, int>
template<class T>bool umin(T& a,T b){if(a>b){a=b;return 1;}return 0;}
template<class T>bool umax(T& a,T b){if(a<b){a=b;return 1;}return 0;}
const int MOD = 1e9+7;
const int N = 1e5+5;
ll a[N];
ll findGap(int t, int n){
if(t == 1){
ll l = 0, r = 1e18, id = 0, mn, mx, ans = 0;
for(int i = 0; i < (n+1)/2; ++i){
MinMax(l, r, &mn, &mx);
a[id++] = mn, a[id++] = mx, l = mn+1, r = mx-1;
}
sort(a, a+n);
for(int i = 0; i < n-1; ++i)
umax(ans, a[i+1]-a[i]);
return ans;
}
ll a_, b_, mn, mx, id = 0, l = 0, r = 1e18;
MinMax(l, r, &mn, &mx);
ll d = (mx-mn-1)/(n-1);
a[id++] = mn;
for(ll i = mn+1; i < mx; i+=d+1){
MinMax(i, min(i+d, mx-1), &a_, &b_);
if(a_ != -1)
a[id++] = a_, a[id++] = b_;
}
a[id++] = mx, id = -1;
for(int i = 0;; ++i)
if(a[i]){
id = i;
break;
}
ll ans = 0;
for(int i = 0; i < id; ++i)
umax(ans, a[i+1]-a[i]);
return ans;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
344 KB |
Output is correct |
2 |
Correct |
0 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 |
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 |
0 ms |
344 KB |
Output is correct |
15 |
Correct |
1 ms |
344 KB |
Output is correct |
16 |
Correct |
8 ms |
804 KB |
Output is correct |
17 |
Correct |
9 ms |
600 KB |
Output is correct |
18 |
Correct |
7 ms |
600 KB |
Output is correct |
19 |
Correct |
7 ms |
600 KB |
Output is correct |
20 |
Correct |
5 ms |
728 KB |
Output is correct |
21 |
Correct |
28 ms |
1880 KB |
Output is correct |
22 |
Correct |
26 ms |
1876 KB |
Output is correct |
23 |
Correct |
28 ms |
1780 KB |
Output is correct |
24 |
Correct |
29 ms |
1864 KB |
Output is correct |
25 |
Correct |
25 ms |
1880 KB |
Output is correct |
26 |
Correct |
29 ms |
1880 KB |
Output is correct |
27 |
Correct |
31 ms |
1872 KB |
Output is correct |
28 |
Correct |
28 ms |
1880 KB |
Output is correct |
29 |
Correct |
32 ms |
1808 KB |
Output is correct |
30 |
Correct |
29 ms |
1788 KB |
Output is correct |
31 |
Correct |
1 ms |
344 KB |
Output is correct |
32 |
Correct |
1 ms |
344 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
2 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
3 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
4 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
5 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
6 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
7 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
8 |
Incorrect |
1 ms |
340 KB |
Output isn't correct |
9 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
10 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
11 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
12 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
13 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
14 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
15 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
16 |
Incorrect |
11 ms |
700 KB |
Output isn't correct |
17 |
Incorrect |
12 ms |
748 KB |
Output isn't correct |
18 |
Incorrect |
9 ms |
852 KB |
Output isn't correct |
19 |
Incorrect |
8 ms |
856 KB |
Output isn't correct |
20 |
Incorrect |
6 ms |
600 KB |
Output isn't correct |
21 |
Runtime error |
40 ms |
3668 KB |
Execution killed with signal 11 |
22 |
Runtime error |
33 ms |
3664 KB |
Execution killed with signal 11 |
23 |
Runtime error |
40 ms |
3664 KB |
Execution killed with signal 11 |
24 |
Runtime error |
33 ms |
3664 KB |
Execution killed with signal 11 |
25 |
Runtime error |
28 ms |
3636 KB |
Execution killed with signal 11 |
26 |
Runtime error |
37 ms |
3520 KB |
Execution killed with signal 11 |
27 |
Runtime error |
31 ms |
3576 KB |
Execution killed with signal 11 |
28 |
Runtime error |
37 ms |
3692 KB |
Execution killed with signal 11 |
29 |
Runtime error |
33 ms |
3664 KB |
Execution killed with signal 11 |
30 |
Incorrect |
25 ms |
1112 KB |
Output isn't correct |
31 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
32 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |