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