結果

問題 No.2897 2集合間距離
ユーザー vjudge1vjudge1
提出日時 2024-09-25 15:13:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,479 bytes
コンパイル時間 2,431 ms
コンパイル使用メモリ 211,176 KB
実行使用メモリ 14,016 KB
最終ジャッジ日時 2024-09-25 15:14:01
合計ジャッジ時間 7,914 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using tpl = tuple<int, int, int>;

const int N = 2e5 + 10, M = 4e3 + 10, W = 2e3;

int n, x[N], y[N], m, z[N], w[N], tr[M], ans[N];
vector<int> p[M];
vector<tpl> que[M][2];

int lowbit(int x) {
    return x & (-x);
}

void add(int x) {
    while (x < M) tr[x]++, x += lowbit(x);
}

int query(int x) {
    int ret = 0;
    while (x > 0) ret += tr[x], x -= lowbit(x);
    return ret;
}

bool Check(int d) {
    fill(tr, tr + M, 0);
    for (int i = 1; i <= n; i++) p[x[i]].push_back(y[i]);
    for (int i = 1; i <= m; i++) {
        que[max(0, z[i] - d)][0].push_back({max(0, w[i] - d), min(M - 1, w[i] + d), i});
        que[min(M - 1, z[i] + d)][1].push_back({max(0, w[i] - d), min(M - 1, w[i] + d), i});
        ans[i] = 0;
    }
    for (int i = 0; i < M; i++) {
        for (auto [l, r, id] : que[i][0]) {
            ans[id] -= query(r) - query(l - 1);
        }
        for (int k : p[i]) add(k);
        for (auto [l, r, id] : que[i][1]) {
            ans[id] += query(r) - query(l - 1);
        }
        que[i][0].clear(), que[i][1].clear(), p[i].clear();
    }
    for (int i = 1; i <= m; i++) if (ans[i] > 0) return 0;

    fill(tr, tr + M, 0);
    for (int i = 1; i <= m; i++) p[z[i]].push_back(w[i]);
    for (int i = 1; i <= n; i++) {
        que[max(0, x[i] - d)][0].push_back({max(0, y[i] - d), min(M - 1, y[i] + d), i});
        que[min(M - 1, x[i] + d)][1].push_back({max(0, y[i] - d), min(M - 1, y[i] + d), i});
        ans[i] = 0;
    }
    for (int i = 0; i < M; i++) {
        for (auto [l, r, id] : que[i][0]) {
            ans[id] -= query(r) - query(l - 1);
        }
        for (int k : p[i]) add(k);
        for (auto [l, r, id] : que[i][1]) {
            ans[id] += query(r) - query(l - 1);
        }
        que[i][0].clear(), que[i][1].clear(), p[i].clear();
    }
    for (int i = 1; i <= n; i++) if (ans[i] > 0) return 0;
    return 1;
}

int main() {
    ios::sync_with_stdio(0), cin.tie(0);
    cin >> n;
    for (int i = 1; i <= n; i++) {
        cin >> x[i] >> y[i];
        int t = y[i];
        y[i] = x[i] - y[i], x[i] += t;
        x[i] += W, y[i] += W;
    }
    cin >> m;
    for (int i = 1; i <= n; i++) {
        cin >> z[i] >> w[i];
        int t = w[i];
        w[i] = z[i] - w[i], z[i] += t;
        z[i] += W, w[i] += W;
    }
    int l = 0, r = 2e3;
    while (l < r) {
        int mid = (l + r) >> 1;
        Check(mid) ? l = mid + 1 : r = mid;
    }
    cout << l;
    return 0;
}
0