# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
763799 | MilosMilutinovic | Measures (CEOI22_measures) | C++14 | 1563 ms | 1124 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 <bits/stdc++.h>
using namespace std;
const int N = 3e5 + 10;
int n, m, d, a[N], b[N];
bool check(long double x) {
long double prv = a[1] - x;
for (int i = 2; i <= n; i++) {
long double L = a[i] - x;
long double R = a[i] + x;
long double pos = max(L, prv + d);
if (pos > R) {
return false;
}
prv = pos;
}
return true;
}
int main() {
scanf("%d%d%d", &n, &m, &d);
for (int i = 1; i <= n; i++) {
scanf("%d", &a[i]);
}
for (int i = 1; i <= m; i++) {
scanf("%d", &b[i]);
}
for (int i = 1; i <= m; i++) {
a[++n] = b[i];
sort(a + 1, a + n + 1);
//long long low = 0, high = 1e17, ans = 1e17;
/* while (low <= high) {
long long mid = low + (high - low) / 2;
if (check(mid)) {
ans = mid;
high = mid - 1;
} else {
low = mid + 1;
}
} */
long long ans = 0;
for (int l = 1; l <= n; l++)
for (int r = l + 1; r <= n; r++)
ans = max(ans, ((r - l) * 1ll * d - (a[r] - a[l])));
if (ans & 1)
printf("%lld.5 ", ans / 2);
else
printf("%lld ", ans / 2);
/*if (ans > 0 && check(ans - 0.5))
printf("%lld.5 ", ans - 1);
else
printf("%lld ", ans);*/
}
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... |