# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
340886 | super_j6 | Gap (APIO16_gap) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//#include "gap.h"
#include <iostream>
#include <cstdio>
#include <algorithm>
using namespace std;
#define endl '\n'
#define ll long long
#define pi pair<int, int>
#define f first
#define s second
const int mxn = 100000;
int t, n;
ll a[mxn];
void MinMax(ll l, ll r, ll *x, ll *y){
l = lower_bound(a, a + n, l) - a;
r = upper_bound(a, a + n, r) - a - 1;
if(l > r) *x = -1, *y = -1;
else *x = a[l], *y = a[r];
}
void f(ll l, ll r, ll &x, ll &y){
MinMax(l, r, &x, &y);
}
ll findGap(int t, int n){
ll l, r, ret = 0;
f(0, 1e18, l, r);
for(ll d = (r - l) / (n - 1), i = l + d - 1; i + d - 1 < r; i += 2 * d){
ll x, y;
f(i, min(r - 1, i + 2 * d - 1), x, y);
if(~x && ~y) ret = max({ret, x - l, y - x}), l = y;
}
ret = max(ret, r - l);
return ret;
}
int main(){
ios::sync_with_stdio(0);
cin.tie(0);
cin >> t >> n;
for(int i = 0; i < n; i++) cin >> a[i];
cout << findGap(t, n) << endl;
return 0;
}