This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <algorithm>
#include "gap.h"
using ll = long long;
namespace solver_1
{
ll arr[100005];
ll solve(int n)
{
for (int l = 0, r = n - 1; l <= r; l++, r--)
{
ll pre = l ? arr[l - 1] + 1 : 0;
ll nxt = r + 1 < n ? arr[r + 1] - 1 : (ll)1e18;
MinMax(pre, nxt, arr + l, arr + r);
}
ll res = 0;
for (int i = 1; i < n; i++)
res = std::max(res, arr[i] - arr[i - 1]);
return res;
}
}
ll findGap(int T, int N)
{
if (T == 1)
return solver_1::solve(N);
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |