이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "gap.h"
#include<bits/stdc++.h>
using namespace std;
#define FAST_IO ios_base::sync_with_stdio(0); cin.tie(nullptr)
#define FOR(i, a, b) for(int i = (a); i <= (b); i++)
#define REP(n) FOR(i, 1, (n))
#define f first
#define s second
#define pb push_back
typedef long long ll;
const int MAXN = 100100;
const ll INF = 1e18;
ll a[MAXN];
long long findGap(int T, int n)
{
int le = 1, ri = n;
a[0] = 0, a[n+1] = INF;
int m = 0;
while (le <= ri) {
MinMax(a[le-1]+1, a[ri+1]-1, &a[le], &a[ri]);
m++;
le++;
ri--;
}
ll ans = 0;
FOR(i, 1, n-1) {
ans = max(ans, a[i+1] - a[i]);
}
return ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |