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