답안 #45053

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
45053 2018-04-11T06:04:28 Z Mamnoon_Siam Gap (APIO16_gap) C++17
30 / 100
81 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 <= 3);
	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++) {
                ~^~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 248 KB Output is correct
2 Correct 2 ms 484 KB Output is correct
3 Correct 2 ms 484 KB Output is correct
4 Correct 2 ms 484 KB Output is correct
5 Correct 2 ms 512 KB Output is correct
6 Correct 2 ms 640 KB Output is correct
7 Correct 2 ms 640 KB Output is correct
8 Correct 2 ms 640 KB Output is correct
9 Correct 2 ms 640 KB Output is correct
10 Correct 2 ms 724 KB Output is correct
11 Correct 3 ms 724 KB Output is correct
12 Correct 3 ms 724 KB Output is correct
13 Correct 3 ms 724 KB Output is correct
14 Correct 3 ms 724 KB Output is correct
15 Correct 3 ms 724 KB Output is correct
16 Correct 17 ms 1128 KB Output is correct
17 Correct 16 ms 1132 KB Output is correct
18 Correct 21 ms 1132 KB Output is correct
19 Correct 20 ms 1132 KB Output is correct
20 Correct 16 ms 1260 KB Output is correct
21 Correct 61 ms 2564 KB Output is correct
22 Correct 61 ms 2564 KB Output is correct
23 Correct 59 ms 2564 KB Output is correct
24 Correct 78 ms 2564 KB Output is correct
25 Correct 51 ms 2564 KB Output is correct
26 Correct 81 ms 2564 KB Output is correct
27 Correct 59 ms 2564 KB Output is correct
28 Correct 61 ms 2564 KB Output is correct
29 Correct 64 ms 2564 KB Output is correct
30 Correct 46 ms 2564 KB Output is correct
31 Correct 2 ms 2564 KB Output is correct
32 Correct 2 ms 2564 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 2564 KB Output is correct
2 Runtime error 2 ms 2564 KB Execution killed with signal 11 (could be triggered by violating memory limits)
3 Runtime error 2 ms 2564 KB Execution killed with signal 11 (could be triggered by violating memory limits)
4 Runtime error 2 ms 2564 KB Execution killed with signal 11 (could be triggered by violating memory limits)
5 Runtime error 2 ms 2564 KB Execution killed with signal 11 (could be triggered by violating memory limits)
6 Runtime error 2 ms 2564 KB Execution killed with signal 11 (could be triggered by violating memory limits)
7 Runtime error 2 ms 2564 KB Execution killed with signal 11 (could be triggered by violating memory limits)
8 Runtime error 2 ms 2564 KB Execution killed with signal 11 (could be triggered by violating memory limits)
9 Runtime error 2 ms 2564 KB Execution killed with signal 11 (could be triggered by violating memory limits)
10 Runtime error 3 ms 2564 KB Execution killed with signal 11 (could be triggered by violating memory limits)
11 Runtime error 3 ms 2564 KB Execution killed with signal 11 (could be triggered by violating memory limits)
12 Runtime error 3 ms 2564 KB Execution killed with signal 11 (could be triggered by violating memory limits)
13 Runtime error 3 ms 2564 KB Execution killed with signal 11 (could be triggered by violating memory limits)
14 Runtime error 3 ms 2564 KB Execution killed with signal 11 (could be triggered by violating memory limits)
15 Runtime error 4 ms 2564 KB Execution killed with signal 11 (could be triggered by violating memory limits)
16 Runtime error 14 ms 2564 KB Execution killed with signal 11 (could be triggered by violating memory limits)
17 Runtime error 10 ms 2564 KB Execution killed with signal 11 (could be triggered by violating memory limits)
18 Runtime error 9 ms 2564 KB Execution killed with signal 11 (could be triggered by violating memory limits)
19 Runtime error 9 ms 2564 KB Execution killed with signal 11 (could be triggered by violating memory limits)
20 Runtime error 8 ms 2564 KB Execution killed with signal 11 (could be triggered by violating memory limits)
21 Runtime error 37 ms 2564 KB Execution killed with signal 11 (could be triggered by violating memory limits)
22 Runtime error 30 ms 2564 KB Execution killed with signal 11 (could be triggered by violating memory limits)
23 Runtime error 35 ms 2596 KB Execution killed with signal 11 (could be triggered by violating memory limits)
24 Runtime error 30 ms 2596 KB Execution killed with signal 11 (could be triggered by violating memory limits)
25 Runtime error 28 ms 2596 KB Execution killed with signal 11 (could be triggered by violating memory limits)
26 Runtime error 38 ms 2596 KB Execution killed with signal 11 (could be triggered by violating memory limits)
27 Runtime error 30 ms 2596 KB Execution killed with signal 11 (could be triggered by violating memory limits)
28 Runtime error 30 ms 2596 KB Execution killed with signal 11 (could be triggered by violating memory limits)
29 Runtime error 34 ms 2596 KB Execution killed with signal 11 (could be triggered by violating memory limits)
30 Runtime error 16 ms 2596 KB Execution killed with signal 11 (could be triggered by violating memory limits)
31 Runtime error 3 ms 2596 KB Execution killed with signal 11 (could be triggered by violating memory limits)
32 Runtime error 2 ms 2596 KB Execution killed with signal 11 (could be triggered by violating memory limits)