# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
973973 |
2024-05-02T14:08:33 Z |
vjudge1 |
Cipele (COCI18_cipele) |
C++14 |
|
0 ms |
0 KB |
#include <stdio/stdc++.h>
#define abs(x) (x < 0 ? -x : x)
int read(int x = 0, int f = 0, char ch = getchar())
{
while ('0' > ch or ch > '9')
f = ch == '-', ch = getchar();
while ('0' <= ch and ch <= '9')
x = x * 10 + (ch ^ 48), ch = getchar();
return f ? -x : x;
}
const int N = 1e5 + 5;
int n, m, ans;
int a[N], b[N];
int judge(int x, int res = 0)
{
for (int i = 0, now = 0; i < n; i++)
{
while (now < m and b[now] < a[i] - x)
now++;
if (now < m and abs(b[now] - a[i]) <= x)
res++, now++;
}
return res;
}
int main()
{
#endif
n = read(), m = read();
for (int i = 0; i < n; i++)
a[i] = read();
for (int i = 0; i < m; i++)
b[i] = read();
std::sort(a, a + n), std::sort(b, b + m);
for (int L = 0, R = 1e9, mid; L <= R;)
if (judge(mid = (L + R) >> 1) == std::min(n, m))
ans = mid, R = mid - 1;
else
L = mid + 1;
return printf("%d", ans), 0;
}
Compilation message
cipele.cpp:1:10: fatal error: stdio/stdc++.h: No such file or directory
1 | #include <stdio/stdc++.h>
| ^~~~~~~~~~~~~~~~
compilation terminated.