# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
862078 | vjudge1 | Growing Vegetables is Fun 4 (JOI21_ho_t1) | C++17 | 24 ms | 8736 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define pii pair<int,int>
#define F first
#define S second
#define endl '\n'
#define pb push_back
#define sz(a) (int)a.size()
#define all(a) a.begin(),a.end()
const int mod = 1e9 + 7;
const int N = 1e6 + 15;
const ll inf = 1e18;
int a[N], n;
ll dp1[N], dp2[N];
int main(){
scanf("%d", &n);
for (int i=0;i<n;i++){
scanf("%d", a+i);
}
for (int i=1;i<n;i++){
dp1[i] = dp1[i-1] + max(0, a[i-1]-a[i]+1);
}
for (int i=n-2;i>=0;i--){
dp2[i] = dp2[i+1] + max(0, a[i+1]-a[i]+1);
}
ll ans = inf;
for (int i=0;i<n;i++){
ans = min(ans, max(dp1[i], dp2[i]));
}
printf("%lld", ans);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |