This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
int a[200005];
int main()
{
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int n, l, r, ans=0;
cin >> n;
for (int i=1; i<=n; i++)
cin >> a[i];
l=1;
r=n;
while (a[l]<a[l+1])
l++;
while (a[r-1]>a[r])
r--;
while (l+2<=r)
{
int x=min(a[l]-a[l+1], a[r]-a[r-1])+1;
ans+=x;
a[l]-=x;
a[r]-=x;
while (a[l]<a[l+1])
l++;
while (a[r-1]>a[r])
r--;
}
cout << ans+r-l;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |