이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "gap.h"
#include <bits/stdc++.h>
using namespace std;
#define ll long long
const ll inf = 1e18;
set<ll> s;
long long findGap(int T, int N)
{
ll ans = 0;
if (T==1) {
ll *mi = new ll, *ma = new ll;
MinMax((ll)1, inf, mi, ma);
s.insert(*mi);
s.insert(*ma);
while (*mi < *ma) {
MinMax(*mi+1, *ma-1, mi, ma);
if (*mi!=-1) s.insert(*mi), s.insert(*ma);
}
ll pre = inf;
for (auto it : s) {
ans = max(ans, it - pre);
pre = it;
}
}
else if (T==2) {
ll *allmin = new ll, *allmax = new ll;
MinMax((ll)1, inf, allmin, allmax);
ll gap = (*allmax - *allmin + N-2) / (N-1);
ll now = *allmin+1, last = *allmin;
while (now < *allmax) {
ll *mi = new ll, *ma = new ll;
MinMax(now, now+gap, mi, ma);
if (*mi != -1) ans = max(ans, *mi - last);
if (*ma != -1) last = *ma;
now = now+gap+1;
}
}
return ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |