이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
template <typename T>
using minpq = std::priority_queue<T, std::vector<T>, std::greater<T>>;
constexpr int64_t inf = std::numeric_limits<int64_t>::max() / 2;
int main() {
std::ios_base::sync_with_stdio(false);
std::cin.tie(nullptr);
int N, H;
std::cin >> N >> H;
std::vector<int> S(N);
for (int i = 0; i < N; ++i) {
std::cin >> S[i];
}
std::priority_queue<int64_t> left;
minpq<int64_t> right;
left.push(-inf);
right.push(+inf);
int64_t cost = 0, offset = 0;
for (int i = 0; i < N; ++i) {
int64_t x = S[i];
int64_t l = left.top() - offset, r = right.top() + offset;
if (l <= x && x <= r) {
left.push(x + offset);
right.push(x - offset);
} else if (x < l) {
cost += l - x;
left.push(x + offset);
right.push(l - offset);
} else {
cost += x - r;
left.push(r + offset);
right.push(x - offset);
}
assert(left.top() - offset <= right.top() + offset);
offset += H;
}
std::cout << cost << '\n';
exit(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... |