이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int a[200001];
int main() {
int n;
ll c = 0, x;
cin >> n;
for (int i = 0; i < n; i++) {
cin >> a[i];
}
int j = 0, k = n - 1;
while (1) {
while (j < k && a[j] < a[j + 1]) {
j++;
}
while (k > j && a[k] < a[k - 1]) {
k--;
}
if (j + 1 == k) {
c++;
j++;
}
if (j == k) {
break;
}
x = min(a[j] - a[j + 1], a[k] - a[k + 1]) + 1;
c += x;
a[j] -= x;
a[k] -= x;
}
cout << c << '\n';
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |