# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
562766 | dattranxxx | Growing Vegetables is Fun 4 (JOI21_ho_t1) | C++11 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
using ll = long long;
void file() {
const string FILE_NAME = "FILE_NAME";
freopen((FILE_NAME + ".inp").c_str(), "r", stdin);
freopen((FILE_NAME + ".out").c_str(), "w", stdout);
}
const int N = 2e5 + 5;
int a[N], pre[N], suf[N];
int n;
int main() {
cin.tie(0)->sync_with_stdio(0); cout.tie(0);
cin >> n;
for (int i = 1; i <= n; ++i)
cin >> a[i];
vector<int> hill;
a[0] = a[n+1] = -1e9;
for (int i = 1; i <= n; ++i)
pre[i] = pre[i-1] + max(0, a[i-1] + 1 - a[i]);
for (int i = n; i; --i)
suf[i] = suf[i+1] + max(0, a[i+1] + 1 - a[i]);
for (int i = 1; i <= n; ++i)
int res = 1e9;
for (int i = 1; i <= n; ++i)
res = min(res, max(pre[i], suf[i]));
cout << res;
return 0;
}