이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int MN = 200071;
using ll = long long;
ll n, A[MN], St[MN], Dr[MN];
int main() {
cin >> n;
for(int i = 1; i <= n; ++i) {
cin >> A[i];
}
for(int i = n; i >= 1; --i) A[i] -= A[i - 1];
for(int i = 1; i < n; ++i) A[i] = A[i + 1];
--n;
ll s = 0;
for(int i = 1; i <= n; ++i) {
s += max(1 - A[i], 0ll);
St[i] = s;
}
s = 0;
for(int i = n; i >= 1; --i) {
s += max(A[i] + 1, 0ll);
Dr[i] = s;
}
ll re = min(St[n], Dr[1]);
for(int i = 1; i <= n; ++i) {
re = min(re, max(St[i], Dr[i + 1]));
}
cout << re << "\n";
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |