답안 #45054

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
45054 2018-04-11T06:05:09 Z Mamnoon_Siam Gap (APIO16_gap) C++17
30 / 100
88 ms 2660 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++) {
                ~^~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 380 KB Output is correct
2 Correct 2 ms 476 KB Output is correct
3 Correct 2 ms 492 KB Output is correct
4 Correct 2 ms 588 KB Output is correct
5 Correct 2 ms 588 KB Output is correct
6 Correct 2 ms 588 KB Output is correct
7 Correct 2 ms 588 KB Output is correct
8 Correct 2 ms 588 KB Output is correct
9 Correct 2 ms 588 KB Output is correct
10 Correct 2 ms 588 KB Output is correct
11 Correct 2 ms 596 KB Output is correct
12 Correct 3 ms 612 KB Output is correct
13 Correct 2 ms 620 KB Output is correct
14 Correct 3 ms 620 KB Output is correct
15 Correct 3 ms 620 KB Output is correct
16 Correct 16 ms 1132 KB Output is correct
17 Correct 19 ms 1136 KB Output is correct
18 Correct 17 ms 1136 KB Output is correct
19 Correct 16 ms 1220 KB Output is correct
20 Correct 12 ms 1220 KB Output is correct
21 Correct 63 ms 2528 KB Output is correct
22 Correct 61 ms 2528 KB Output is correct
23 Correct 88 ms 2532 KB Output is correct
24 Correct 70 ms 2532 KB Output is correct
25 Correct 52 ms 2536 KB Output is correct
26 Correct 66 ms 2660 KB Output is correct
27 Correct 62 ms 2660 KB Output is correct
28 Correct 63 ms 2660 KB Output is correct
29 Correct 60 ms 2660 KB Output is correct
30 Correct 47 ms 2660 KB Output is correct
31 Correct 2 ms 2660 KB Output is correct
32 Correct 2 ms 2660 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 2660 KB Output is correct
2 Runtime error 2 ms 2660 KB Execution killed with signal 11 (could be triggered by violating memory limits)
3 Runtime error 2 ms 2660 KB Execution killed with signal 11 (could be triggered by violating memory limits)
4 Runtime error 2 ms 2660 KB Execution killed with signal 11 (could be triggered by violating memory limits)
5 Runtime error 2 ms 2660 KB Execution killed with signal 11 (could be triggered by violating memory limits)
6 Runtime error 3 ms 2660 KB Execution killed with signal 11 (could be triggered by violating memory limits)
7 Runtime error 2 ms 2660 KB Execution killed with signal 11 (could be triggered by violating memory limits)
8 Runtime error 2 ms 2660 KB Execution killed with signal 11 (could be triggered by violating memory limits)
9 Runtime error 2 ms 2660 KB Execution killed with signal 11 (could be triggered by violating memory limits)
10 Runtime error 3 ms 2660 KB Execution killed with signal 11 (could be triggered by violating memory limits)
11 Runtime error 3 ms 2660 KB Execution killed with signal 11 (could be triggered by violating memory limits)
12 Runtime error 3 ms 2660 KB Execution killed with signal 11 (could be triggered by violating memory limits)
13 Runtime error 3 ms 2660 KB Execution killed with signal 11 (could be triggered by violating memory limits)
14 Runtime error 3 ms 2660 KB Execution killed with signal 11 (could be triggered by violating memory limits)
15 Runtime error 3 ms 2660 KB Execution killed with signal 11 (could be triggered by violating memory limits)
16 Runtime error 10 ms 2660 KB Execution killed with signal 11 (could be triggered by violating memory limits)
17 Runtime error 11 ms 2660 KB Execution killed with signal 11 (could be triggered by violating memory limits)
18 Runtime error 9 ms 2660 KB Execution killed with signal 11 (could be triggered by violating memory limits)
19 Runtime error 10 ms 2660 KB Execution killed with signal 11 (could be triggered by violating memory limits)
20 Runtime error 7 ms 2660 KB Execution killed with signal 11 (could be triggered by violating memory limits)
21 Runtime error 31 ms 2660 KB Execution killed with signal 11 (could be triggered by violating memory limits)
22 Runtime error 49 ms 2660 KB Execution killed with signal 11 (could be triggered by violating memory limits)
23 Runtime error 54 ms 2660 KB Execution killed with signal 11 (could be triggered by violating memory limits)
24 Runtime error 31 ms 2660 KB Execution killed with signal 11 (could be triggered by violating memory limits)
25 Runtime error 23 ms 2660 KB Execution killed with signal 11 (could be triggered by violating memory limits)
26 Runtime error 33 ms 2660 KB Execution killed with signal 11 (could be triggered by violating memory limits)
27 Runtime error 33 ms 2660 KB Execution killed with signal 11 (could be triggered by violating memory limits)
28 Runtime error 31 ms 2660 KB Execution killed with signal 11 (could be triggered by violating memory limits)
29 Runtime error 32 ms 2660 KB Execution killed with signal 11 (could be triggered by violating memory limits)
30 Runtime error 16 ms 2660 KB Execution killed with signal 11 (could be triggered by violating memory limits)
31 Runtime error 3 ms 2660 KB Execution killed with signal 11 (could be triggered by violating memory limits)
32 Runtime error 2 ms 2660 KB Execution killed with signal 11 (could be triggered by violating memory limits)