# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1053594 | vjudge1 | Measures (CEOI22_measures) | C++17 | 1520 ms | 604 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <iostream>
#include <vector>
#include <algorithm>
#include <cassert>
#warning That's not the baby, that's my baby
#define int ll
#define debug(x) #x << " = " << x << '\n'
typedef long long ll;
signed main() {
std::ios_base::sync_with_stdio(false);
std::cin.tie(0);
std::cout.tie(0);
#ifdef LOCAL
freopen("input.txt", "r", stdin);
#endif
int n, m, D;
std::cin >> n >> m >> D;
D *= 2;
std::vector<int> a;
if (n != 0) {
a.resize(n);
for (auto &x : a) {
std::cin >> x;
x *= 2;
}
}
auto check = [&](int mid) {
ll last = -8e18;
for (const auto &x : a) {
if (last + D <= x) {
last = std::max(last + D, (ll) x - mid);
} else {
if (x + mid < last + D) {
return false;
}
last += D;
}
}
return true;
};
while (m--) {
int x;
std::cin >> x;
a.push_back(2 * x);
std::sort(a.begin(), a.end());
int l = 0, r = 2e9;
while (l < r) {
int mid = (l + r) / 2;
if (check(mid)) {
r = mid;
} else {
l = mid + 1;
}
}
std::cout << r / 2;
if (r % 2) {
std::cout << ".5";
}
std::cout << ' ';
}
return 0;
}
Compilation message (stderr)
# | 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... |