이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
using namespace std;
#define nmax 200003
long long v[nmax];
int main()
{
long long n, i, x, y, rez = 0;
cin >> n;
for( i = 0; i < n; i++ )
cin >> v[i];
x = 0;
y = n - 1;
while( y - x > 0 ) {
if( v[x] < v[x+1] )
x++;
else if( v[y-1] > v[y] )
y--;
else {
if( v[x] - v[x+1] + 1 < v[y] - v[y-1] + 1 ) {
rez += v[x] - v[x+1] + 1;
v[y] -= v[x] - v[x+1] + 1;
x++;
} else {
rez += v[y] - v[y-1] + 1;
v[x] -= v[y] - v[y-1] + 1;
y--;
}
}
/*cout << rez << " ";
for( i = 0; i < n; i++ )
cout << v[i] << " ";
cout << "\n";*/
}
cout << rez;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |