이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
int main() {
int n;
cin >> n;
int a[n + 1], diff[n + 1];
a[0] = 0;
for (int i = 1; i <= n; i++) {
cin >> a[i];
diff[i] = a[i] - a[i - 1];
}
// make diff positive followed be negative
ll pre[n + 2], suf[n + 2];
pre[0] = 0;
for (int i = 1; i <= n; i++) {
pre[i] = pre[i - 1] + max(1 - diff[i], 0);
}
suf[n + 1] = 0;
for (int i = n; i >= 1; i--) {
suf[i] = suf[i + 1] + max(diff[i] - (-1), 0);
}
ll ans = 1e18;
for (int i = 1; i <= n; i++) {
ans = min(ans, max(pre[i], suf[i + 1]));
}
cout << ans << endl;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |