# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
254851 | maximath_1 | Gap (APIO16_gap) | C++11 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/*
* APIO 2016 Gap
* T = 1
> Two pointers, left right approaching the center
* T = 2
> pigeon hole principle
> get minimum and maximum,
> then divide the array into n - 1 approx. equal parts
> By PHP, one of these parts will be empty
> Thus, maximum gap >= the length of a part
> Now we can simply compare with seg[i].left - seg[i - 1].right
*/
#include "gap.h"
#include <iostream>
using namespace std;
#define ll long long
const ll mn = 0ll, mx = 1e18;
ll res = mn, arr[100005];
ll findGap(int t, int n){
if(t == 1){
ll lf = mn, rg = mx, k = 0;
for(int i = n; i > 0; i -= 2){
MinMax(lf, rg, &arr[k], &arr[n - 1 - k]);
lf = arr[k] + 1;
rg = arr[n - 1 - k] - 1;
k ++;
}
for(int i = 1; i < n; i ++)
res = max(res, arr[i] - arr[i - 1]);
}
if(t == 2){
ll lf, rg;
MinMax(mn, mx, &lf, &rg);
if(n == 2) return rg - lf;
ll len = rg - lf - 1ll;
ll st = lf + 1, ed = lf;
for(int i = 0; i < n - 1; i ++){
ll e = st + len / (n - 1) - 1;
if(i < len % (n - 1)) e ++;
MinMax(st, e, &lf, &rg);
if(lf != -1){
res = max(res, lf - ed);
ed = rg;
}
s = e + 1ll;
}
}
return res;
}