# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
397663 | ChrisT | Growing Vegetables is Fun 4 (JOI21_ho_t1) | C++17 | 38 ms | 6212 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int MN = 1e6 + 5;
int main () {
int n;
scanf ("%d",&n);
vector<long long> pre(n+1), suf(n+2);
vector<int> a(n+1);
long long ret = 1e18;
for (int i = 1; i <= n; i++) {
scanf ("%d",&a[i]);
if (i > 1) pre[i] = pre[i-1] + max(0,a[i-1] - a[i] + 1);
}
for (int i = n; i >= 1; i--) {
if (i < n) suf[i] = suf[i+1] + max(0,a[i+1] - a[i] + 1);
ret = min(ret,max(pre[i],suf[i]));
}
printf ("%lld\n",ret);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |