이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int main()
{
int N;
cin >> N;
vector<int> A(N);
for (int i = 0; i < N; i++)
{
cin >> A[i];
}
long long tot = 0;
int a = 1, b = N - 2, adda = 0, addb = 0;
while (a < b)
{
while (A[a - 1] - adda < A[a])
{
a++;
adda = 0;
}
while (A[b + 1] - addb < A[b])
{
b--;
addb = 0;
}
int m = min(A[a - 1] - A[a] + 1 - adda, A[b + 1] - A[b] + 1 - addb);
adda += m;
addb += m;
tot += m;
}
if (A[a] == A[b] && a != b)
tot++;
cout << tot - 1;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |