結果

問題 No.2897 2集合間距離
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-09-25 16:55:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,114 ms / 3,500 ms
コード長 1,484 bytes
コンパイル時間 2,255 ms
コンパイル使用メモリ 211,988 KB
実行使用メモリ 15,744 KB
最終ジャッジ日時 2024-09-25 16:55:42
合計ジャッジ時間 11,468 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 4 ms
6,944 KB
testcase_14 AC 5 ms
6,940 KB
testcase_15 AC 23 ms
6,940 KB
testcase_16 AC 986 ms
15,616 KB
testcase_17 AC 1,001 ms
15,616 KB
testcase_18 AC 1,000 ms
15,616 KB
testcase_19 AC 974 ms
15,616 KB
testcase_20 AC 1,004 ms
15,744 KB
testcase_21 AC 956 ms
15,616 KB
testcase_22 AC 1,114 ms
15,744 KB
testcase_23 AC 1,049 ms
15,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

void fast_io() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
}

int main() {
    fast_io();
    int n;
    cin >> n;
    vector<pair<int, int>> s(n);
    for (int i = 0; i < n; i++) {
        int x, y;
        cin >> x >> y;
        s[i] = {x + y, x - y};
    }
    int m;
    cin >> m;
    vector<pair<int, int>> t(m);
    for (int i = 0; i < m; i++) {
        int x, y;
        cin >> x >> y;
        t[i] = {x + y, x - y};
    }
    sort(s.begin(), s.end());
    sort(t.begin(), t.end());
    int ng = -1, ok = 1e6;
    while (ng + 1 < ok) {
        int mid = (ng + ok) / 2;
        multiset<int> st;
        bool is_ok = false;
        int l = 0, r = 0;
        for (auto [u, v] : s) {
            while (r < m && t[r].first <= u + mid) {
                st.insert(t[r].second);
                r++;
            }
            while (l < r && t[l].first < u - mid) {
                st.erase(st.find(t[l].second));
                l++;
            }
            // cout << l << " " << r << endl;
            auto it = st.lower_bound(v);
            if (it != st.end() && *it <= v + mid) {
                is_ok = true;
                break;
            }
            if (it != st.begin() && *prev(it) >= v - mid) {
                is_ok = true;
                break;
            }
        }

        if (is_ok) {
            ok = mid;
        } else {
            ng = mid;
        }
    }
    cout << ok << endl;
}
0