#include <bits/stdc++.h>
#include "gap.h"
#define endl '\n'
using namespace std;
typedef long long ll;
const ll INF = 1e18;
ll t,n;
ll solve_t1()
{
vector <ll> a;
ll left = 0;
ll right = INF;
ll minel;
ll maxel;
ll cnt = 0;
while(left <= right && 2 * cnt < n)
{
MinMax(left, right, &minel, &maxel);
a.push_back(minel);
a.push_back(maxel);
cnt++;
left = minel + 1;
right = maxel - 1;
}
sort(a.begin(), a.end());
ll ans = 0;
for(int i = 1; i < n; i++)
{
ans = max(ans, a[i] - a[i - 1]);
}
return ans;
}
ll solve_t2()
{
ll minel;
ll maxel;
MinMax(0, INF, &minel, &maxel);
ll cnt = (maxel - minel + 1) / 2;
ll ans = 0;
ll last = minel;
for(int i = minel; i <= maxel; i += cnt)
{
MinMax(i, i + cnt, &minel, &maxel);
if(minel == -1)
{
ans = max(ans, minel - last);
last = maxel;
}
}
return ans;
}
ll findGap(int T, int N)
{
t = T;
n = N;
if(t == 1)
return solve_t1();
else if(t == 2)
return solve_t2();
else
assert(false);
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
1 ms |
2392 KB |
Output is correct |
3 |
Correct |
1 ms |
2388 KB |
Output is correct |
4 |
Incorrect |
1 ms |
2392 KB |
Output isn't correct |
5 |
Correct |
1 ms |
2392 KB |
Output is correct |
6 |
Correct |
1 ms |
2392 KB |
Output is correct |
7 |
Correct |
1 ms |
2392 KB |
Output is correct |
8 |
Correct |
1 ms |
2392 KB |
Output is correct |
9 |
Correct |
1 ms |
2392 KB |
Output is correct |
10 |
Correct |
1 ms |
2392 KB |
Output is correct |
11 |
Correct |
1 ms |
2392 KB |
Output is correct |
12 |
Correct |
1 ms |
2392 KB |
Output is correct |
13 |
Correct |
1 ms |
2392 KB |
Output is correct |
14 |
Correct |
1 ms |
2392 KB |
Output is correct |
15 |
Correct |
1 ms |
2392 KB |
Output is correct |
16 |
Correct |
8 ms |
3008 KB |
Output is correct |
17 |
Correct |
10 ms |
2832 KB |
Output is correct |
18 |
Correct |
10 ms |
2800 KB |
Output is correct |
19 |
Correct |
8 ms |
2836 KB |
Output is correct |
20 |
Correct |
7 ms |
2828 KB |
Output is correct |
21 |
Correct |
32 ms |
3960 KB |
Output is correct |
22 |
Correct |
32 ms |
3984 KB |
Output is correct |
23 |
Correct |
32 ms |
3988 KB |
Output is correct |
24 |
Correct |
31 ms |
4096 KB |
Output is correct |
25 |
Correct |
30 ms |
3980 KB |
Output is correct |
26 |
Correct |
32 ms |
4028 KB |
Output is correct |
27 |
Correct |
32 ms |
3912 KB |
Output is correct |
28 |
Correct |
32 ms |
4000 KB |
Output is correct |
29 |
Correct |
32 ms |
3992 KB |
Output is correct |
30 |
Correct |
26 ms |
3992 KB |
Output is correct |
31 |
Correct |
1 ms |
2392 KB |
Output is correct |
32 |
Correct |
1 ms |
2392 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
3005 ms |
2392 KB |
Time limit exceeded |
2 |
Execution timed out |
3065 ms |
2388 KB |
Time limit exceeded |
3 |
Execution timed out |
3045 ms |
2392 KB |
Time limit exceeded |
4 |
Execution timed out |
3043 ms |
2392 KB |
Time limit exceeded |
5 |
Incorrect |
1 ms |
2392 KB |
Output isn't correct |
6 |
Execution timed out |
3029 ms |
2392 KB |
Time limit exceeded |
7 |
Execution timed out |
3050 ms |
2392 KB |
Time limit exceeded |
8 |
Execution timed out |
3065 ms |
2392 KB |
Time limit exceeded |
9 |
Execution timed out |
3070 ms |
2392 KB |
Time limit exceeded |
10 |
Incorrect |
1 ms |
2552 KB |
Output isn't correct |
11 |
Execution timed out |
3050 ms |
2644 KB |
Time limit exceeded |
12 |
Execution timed out |
3083 ms |
2388 KB |
Time limit exceeded |
13 |
Execution timed out |
3056 ms |
2392 KB |
Time limit exceeded |
14 |
Execution timed out |
3048 ms |
2392 KB |
Time limit exceeded |
15 |
Incorrect |
1 ms |
2392 KB |
Output isn't correct |
16 |
Execution timed out |
3018 ms |
2584 KB |
Time limit exceeded |
17 |
Execution timed out |
3007 ms |
2580 KB |
Time limit exceeded |
18 |
Execution timed out |
3022 ms |
2588 KB |
Time limit exceeded |
19 |
Execution timed out |
3047 ms |
2580 KB |
Time limit exceeded |
20 |
Incorrect |
2 ms |
2572 KB |
Output isn't correct |
21 |
Execution timed out |
3063 ms |
2852 KB |
Time limit exceeded |
22 |
Execution timed out |
3049 ms |
2860 KB |
Time limit exceeded |
23 |
Execution timed out |
3045 ms |
2856 KB |
Time limit exceeded |
24 |
Execution timed out |
3100 ms |
2864 KB |
Time limit exceeded |
25 |
Execution timed out |
3024 ms |
2868 KB |
Time limit exceeded |
26 |
Execution timed out |
3028 ms |
2852 KB |
Time limit exceeded |
27 |
Execution timed out |
3065 ms |
2996 KB |
Time limit exceeded |
28 |
Execution timed out |
3016 ms |
2848 KB |
Time limit exceeded |
29 |
Execution timed out |
3038 ms |
2860 KB |
Time limit exceeded |
30 |
Incorrect |
7 ms |
2856 KB |
Output isn't correct |
31 |
Execution timed out |
3085 ms |
2436 KB |
Time limit exceeded |
32 |
Incorrect |
1 ms |
2392 KB |
Output isn't correct |