# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
266596 | dCoding | Gap (APIO16_gap) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "gap.h"
#include <bits/stdc++.h>
using namespace std;
#define F0R(i,n) for(int i = 0; i < (n); i++)
#define FOR(i,a,b) for(int i = (a); i <= (b); i++)
#define ll long long
#define pb push_back
long long findGap(int T, int N) {
vector<ll> a;
ll lo = 0, hi = 1e18;
while(a.size() < N) {
ll mn,mx;
MinMax(lo,hi,mn,mx);
if(mn == mx) {
a.pb(mn);
} else {
a.pb(mn); a.pb(mx);
hi = mx-1; lo = mn+1;
assert(lo <= hi);
}
}
ll ans = 0;
sort(a.begin(),a.end());
FOR(i,1,n-1) ans = max(ans,a[i]-a[i-1]);
return ans;
}