# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
921382 | TAhmed33 | Growing Vegetables is Fun 4 (JOI21_ho_t1) | C++98 | 21 ms | 7248 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int MAXN = 2e5 + 25;
ll a[MAXN], n, pref[MAXN], suff[MAXN];
int main () {
ios::sync_with_stdio(0); cin.tie(0);
cin >> n; ll x;
for (int i = 1; i <= n; i++) {
ll y; cin >> y;
a[i] = y - x; x = y;
}
///for (int i = 2; i <= n; i++) cout << a[i] << " ";
//cout << '\n';
for (int i = 2; i <= n; i++) {
pref[i] = max(0ll, 1 - a[i]) + pref[i - 1];
}
for (int i = n; i >= 2; i--) {
suff[i] = max(0ll, a[i] + 1) + suff[i + 1];
}
ll mn = suff[2];
for (int i = 2; i <= n; i++) {
mn = min(mn, max(pref[i], suff[i + 1]));
}
cout << mn << '\n';
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |