# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
45056 |
2018-04-11T06:06:44 Z |
Mamnoon_Siam |
Gap (APIO16_gap) |
C++17 |
|
87 ms |
2740 KB |
#include <bits/stdc++.h>
using namespace std;
int n;
typedef long long ll;
void MinMax(ll, ll, ll*, ll*);
ll ceil(ll x, ll d) {
return (x - 1) / d + 1;
}
ll solve_naive() {
ll l = 0, r = 1000000000000000000LL;
vector<ll> v;
int lim = (n + 1) / 2;
for(int i=1; i<=lim; i++) {
ll x, y;
MinMax(l, r, &x, &y);
v.push_back(x);
if(x != y) v.push_back(y);
l = x + 1;
r = y - 1;
}
sort(v.begin(), v.end());
ll ret = 0;
for(int i=1; i<(ll)v.size(); i++) {
ret = max(ret, v[i] - v[i-1]);
} return ret;
}
ll solve_proway() {
ll L = 0, R = 1e18;
MinMax(L, R, &L, &R);
if(n == 2) return R - L;
ll big = ceil(R - L - 1, (ll)n-2);
ll small = (R - L - 1) / (n - 2);
ll big_cnt = (R - L - 1) % (n-2);
ll small_cnt = (n - 2) - big_cnt;
vector<pair<ll, ll>> v;
assert(big == 2 and small == 2);
ll nxt = L;
for(ll i=1, l = L+1; i<=big_cnt; i++, l += big) {
ll r = l + big - 1;
ll x, y;
MinMax(l, r, &x, &y);
if(x != -1) {
v.push_back(make_pair(x, y));
} nxt = r+1;
}
for(ll i = 1, l = nxt; i <= small_cnt; i++, l += small) {
ll r = l + small - 1;
ll x, y;
MinMax(l, r, &x, &y);
if(x != -1) {
v.push_back(make_pair(x, y));
}
}
int tot = 2;
for(pair<ll, ll> b : v) {
if(b.first == b.second) tot++;
else tot += 2;
}
if(tot == n) {
ll ret = 0;
ret = max(ret, v[0].first - L);
ret = max(ret, R - v.back().second);
for(int i=0; i<v.size(); i++) {
ret = max(ret, v[i].second - v[i].first);
}
for(int i=1; i<v.size(); i++) {
ret = max(ret, v[i].first - v[i-1].second);
}
return ret;
}
else {
ll ret = 0;
ret = max(ret, v[0].first - L);
ret = max(ret, R - v.back().second);
for(int i=0; i<v.size(); i++) {
ret = max(ret, v[i].first - v[i-1].second);
} return ret;
}
}
long long findGap(int32_t T, int32_t N)
{
n = N;
if(T == 1) return solve_naive();
else return solve_proway();
return 0;
}
Compilation message
gap.cpp: In function 'll solve_proway()':
gap.cpp:69:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i=0; i<v.size(); i++) {
~^~~~~~~~~
gap.cpp:72:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i=1; i<v.size(); i++) {
~^~~~~~~~~
gap.cpp:81:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i=0; i<v.size(); i++) {
~^~~~~~~~~
# |
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 |
560 KB |
Output is correct |
4 |
Correct |
2 ms |
576 KB |
Output is correct |
5 |
Correct |
2 ms |
576 KB |
Output is correct |
6 |
Correct |
2 ms |
576 KB |
Output is correct |
7 |
Correct |
2 ms |
592 KB |
Output is correct |
8 |
Correct |
2 ms |
720 KB |
Output is correct |
9 |
Correct |
2 ms |
720 KB |
Output is correct |
10 |
Correct |
2 ms |
720 KB |
Output is correct |
11 |
Correct |
3 ms |
720 KB |
Output is correct |
12 |
Correct |
2 ms |
720 KB |
Output is correct |
13 |
Correct |
2 ms |
720 KB |
Output is correct |
14 |
Correct |
2 ms |
748 KB |
Output is correct |
15 |
Correct |
3 ms |
748 KB |
Output is correct |
16 |
Correct |
16 ms |
1148 KB |
Output is correct |
17 |
Correct |
17 ms |
1148 KB |
Output is correct |
18 |
Correct |
18 ms |
1148 KB |
Output is correct |
19 |
Correct |
17 ms |
1236 KB |
Output is correct |
20 |
Correct |
13 ms |
1236 KB |
Output is correct |
21 |
Correct |
62 ms |
2548 KB |
Output is correct |
22 |
Correct |
62 ms |
2548 KB |
Output is correct |
23 |
Correct |
65 ms |
2548 KB |
Output is correct |
24 |
Correct |
63 ms |
2548 KB |
Output is correct |
25 |
Correct |
58 ms |
2548 KB |
Output is correct |
26 |
Correct |
87 ms |
2548 KB |
Output is correct |
27 |
Correct |
65 ms |
2608 KB |
Output is correct |
28 |
Correct |
67 ms |
2740 KB |
Output is correct |
29 |
Correct |
64 ms |
2740 KB |
Output is correct |
30 |
Correct |
49 ms |
2740 KB |
Output is correct |
31 |
Correct |
3 ms |
2740 KB |
Output is correct |
32 |
Correct |
2 ms |
2740 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
2740 KB |
Output is correct |
2 |
Runtime error |
2 ms |
2740 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
3 |
Runtime error |
2 ms |
2740 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
4 |
Runtime error |
2 ms |
2740 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
5 |
Runtime error |
2 ms |
2740 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
6 |
Runtime error |
3 ms |
2740 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
7 |
Runtime error |
2 ms |
2740 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
8 |
Runtime error |
3 ms |
2740 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
9 |
Runtime error |
2 ms |
2740 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
10 |
Runtime error |
2 ms |
2740 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
11 |
Runtime error |
3 ms |
2740 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
12 |
Runtime error |
3 ms |
2740 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
13 |
Runtime error |
3 ms |
2740 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
14 |
Runtime error |
3 ms |
2740 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
15 |
Runtime error |
2 ms |
2740 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
16 |
Runtime error |
10 ms |
2740 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
17 |
Runtime error |
10 ms |
2740 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
18 |
Runtime error |
10 ms |
2740 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
19 |
Runtime error |
10 ms |
2740 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
20 |
Runtime error |
8 ms |
2740 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
21 |
Runtime error |
32 ms |
2740 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
22 |
Runtime error |
32 ms |
2740 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
23 |
Runtime error |
32 ms |
2740 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
24 |
Runtime error |
32 ms |
2740 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
25 |
Runtime error |
24 ms |
2740 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
26 |
Runtime error |
31 ms |
2740 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
27 |
Runtime error |
55 ms |
2740 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
28 |
Runtime error |
35 ms |
2740 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
29 |
Runtime error |
31 ms |
2740 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
30 |
Runtime error |
44 ms |
2740 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
31 |
Runtime error |
2 ms |
2740 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
32 |
Runtime error |
2 ms |
2740 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |