結果

問題 No.2897 2集合間距離
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-09-25 16:48:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,408 bytes
コンパイル時間 2,488 ms
コンパイル使用メモリ 212,336 KB
実行使用メモリ 15,872 KB
最終ジャッジ日時 2024-09-25 16:49:11
合計ジャッジ時間 19,199 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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 < n; i++) {
        int x, y;
        cin >> x >> y;
        t[i] = {x + y, x - y};
    }
    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++;
            }
            auto it = st.lower_bound(u);
            if (it != st.end() && *it <= u + mid) {
                is_ok = true;
                break;
            }
            if (it != st.begin() && *prev(it) >= u - mid) {
                is_ok = true;
                break;
            }
        }

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