Submission #45055

# Submission time Handle Problem Language Result Execution time Memory
45055 2018-04-11T06:06:10 Z Mamnoon_Siam Gap (APIO16_gap) C++17
30 / 100
123 ms 2596 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);
	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 380 KB Output is correct
2 Correct 1 ms 380 KB Output is correct
3 Correct 2 ms 428 KB Output is correct
4 Correct 2 ms 544 KB Output is correct
5 Correct 2 ms 596 KB Output is correct
6 Correct 2 ms 776 KB Output is correct
7 Correct 2 ms 776 KB Output is correct
8 Correct 2 ms 776 KB Output is correct
9 Correct 2 ms 776 KB Output is correct
10 Correct 2 ms 776 KB Output is correct
11 Correct 4 ms 776 KB Output is correct
12 Correct 3 ms 776 KB Output is correct
13 Correct 2 ms 776 KB Output is correct
14 Correct 3 ms 776 KB Output is correct
15 Correct 2 ms 776 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 17 ms 1148 KB Output is correct
20 Correct 14 ms 1148 KB Output is correct
21 Correct 64 ms 2544 KB Output is correct
22 Correct 60 ms 2548 KB Output is correct
23 Correct 61 ms 2548 KB Output is correct
24 Correct 64 ms 2548 KB Output is correct
25 Correct 53 ms 2548 KB Output is correct
26 Correct 61 ms 2548 KB Output is correct
27 Correct 123 ms 2548 KB Output is correct
28 Correct 62 ms 2548 KB Output is correct
29 Correct 62 ms 2548 KB Output is correct
30 Correct 47 ms 2548 KB Output is correct
31 Correct 2 ms 2548 KB Output is correct
32 Correct 2 ms 2548 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 2 ms 2548 KB Output is correct
2 Runtime error 2 ms 2548 KB Execution killed with signal 11 (could be triggered by violating memory limits)
3 Runtime error 2 ms 2548 KB Execution killed with signal 11 (could be triggered by violating memory limits)
4 Runtime error 3 ms 2548 KB Execution killed with signal 11 (could be triggered by violating memory limits)
5 Runtime error 2 ms 2548 KB Execution killed with signal 11 (could be triggered by violating memory limits)
6 Runtime error 2 ms 2548 KB Execution killed with signal 11 (could be triggered by violating memory limits)
7 Runtime error 3 ms 2548 KB Execution killed with signal 11 (could be triggered by violating memory limits)
8 Runtime error 2 ms 2548 KB Execution killed with signal 11 (could be triggered by violating memory limits)
9 Runtime error 2 ms 2548 KB Execution killed with signal 11 (could be triggered by violating memory limits)
10 Runtime error 2 ms 2548 KB Execution killed with signal 11 (could be triggered by violating memory limits)
11 Runtime error 3 ms 2548 KB Execution killed with signal 11 (could be triggered by violating memory limits)
12 Runtime error 3 ms 2548 KB Execution killed with signal 11 (could be triggered by violating memory limits)
13 Runtime error 3 ms 2548 KB Execution killed with signal 11 (could be triggered by violating memory limits)
14 Runtime error 3 ms 2548 KB Execution killed with signal 11 (could be triggered by violating memory limits)
15 Runtime error 3 ms 2548 KB Execution killed with signal 11 (could be triggered by violating memory limits)
16 Runtime error 11 ms 2548 KB Execution killed with signal 11 (could be triggered by violating memory limits)
17 Runtime error 10 ms 2548 KB Execution killed with signal 11 (could be triggered by violating memory limits)
18 Runtime error 10 ms 2548 KB Execution killed with signal 11 (could be triggered by violating memory limits)
19 Runtime error 10 ms 2548 KB Execution killed with signal 11 (could be triggered by violating memory limits)
20 Runtime error 6 ms 2548 KB Execution killed with signal 11 (could be triggered by violating memory limits)
21 Runtime error 34 ms 2548 KB Execution killed with signal 11 (could be triggered by violating memory limits)
22 Runtime error 40 ms 2548 KB Execution killed with signal 11 (could be triggered by violating memory limits)
23 Runtime error 31 ms 2596 KB Execution killed with signal 11 (could be triggered by violating memory limits)
24 Runtime error 33 ms 2596 KB Execution killed with signal 11 (could be triggered by violating memory limits)
25 Runtime error 22 ms 2596 KB Execution killed with signal 11 (could be triggered by violating memory limits)
26 Runtime error 37 ms 2596 KB Execution killed with signal 11 (could be triggered by violating memory limits)
27 Runtime error 31 ms 2596 KB Execution killed with signal 11 (could be triggered by violating memory limits)
28 Runtime error 31 ms 2596 KB Execution killed with signal 11 (could be triggered by violating memory limits)
29 Runtime error 31 ms 2596 KB Execution killed with signal 11 (could be triggered by violating memory limits)
30 Runtime error 17 ms 2596 KB Execution killed with signal 11 (could be triggered by violating memory limits)
31 Runtime error 2 ms 2596 KB Execution killed with signal 11 (could be triggered by violating memory limits)
32 Runtime error 3 ms 2596 KB Execution killed with signal 11 (could be triggered by violating memory limits)