0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 19:45:24 +00:00

D - Searchlights

https://codeforces.com/contest/1408/submission/177510355
This commit is contained in:
Baoshuo Ren 2022-10-23 15:02:19 +08:00
parent 0e39cd7712
commit 3861d005e4
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A

43
Codeforces/1408/D/D.cpp Normal file
View File

@ -0,0 +1,43 @@
#include <iostream>
using std::cin;
using std::cout;
const char endl = '\n';
const int N = 2005,
M = 1e6 + 5;
int n, m, a[N], b[N], c[N], d[N], f[M], max, ans;
int main() {
std::ios::sync_with_stdio(false);
cin.tie(nullptr);
cin >> n >> m;
for (int i = 1; i <= n; i++) {
cin >> a[i] >> b[i];
}
for (int i = 1; i <= m; i++) {
cin >> c[i] >> d[i];
}
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= m; j++) {
if (d[j] < b[i]) continue;
max = std::max(max, d[j] - b[i]);
f[d[j] - b[i]] = std::max(f[d[j] - b[i]], c[j] - a[i] + 1);
}
}
ans = max + 1;
for (int i = ::max, max = 0; i >= 0; i--) {
max = std::max(max, f[i]);
ans = std::min(ans, i + max);
}
cout << ans << endl;
return 0;
}