이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
ll n, h;
cin >> n >> h;
priority_queue<ll> neg;
ll negd = 0;
priority_queue<ll, vector<ll>, greater<ll>> pos;
ll posd = 0;
ll ans = 0;
for (int i = 0; i < n; i++) {
ll a;
cin >> a;
if (i == 0) {
neg.push(a);
pos.push(a);
} else {
negd -= h;
posd += h;
ll l = neg.top() + negd;
ll r = pos.top() + posd;
if (l <= a && a <= r) {
neg.push(a - negd);
pos.push(a - posd);
} else if (a > r) {
ans += a - r;
neg.push(r - negd);
pos.pop();
pos.push(a - posd);
pos.push(a - posd);
} else {
ans += l - a;
pos.push(l - posd);
neg.pop();
neg.push(a - negd);
neg.push(a - negd);
}
}
}
cout << ans << "\n";
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |