結果

問題 No.2436 Min Diff Distance
ユーザー rniyarniya
提出日時 2023-08-18 23:40:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 501 ms / 2,000 ms
コード長 2,958 bytes
コンパイル時間 2,474 ms
コンパイル使用メモリ 234,112 KB
実行使用メモリ 24,656 KB
最終ジャッジ日時 2024-05-06 06:29:33
合計ジャッジ時間 10,049 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 487 ms
24,004 KB
testcase_04 AC 501 ms
23,876 KB
testcase_05 AC 492 ms
23,876 KB
testcase_06 AC 481 ms
23,876 KB
testcase_07 AC 478 ms
23,876 KB
testcase_08 AC 478 ms
23,880 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 295 ms
24,576 KB
testcase_12 AC 304 ms
24,656 KB
testcase_13 AC 320 ms
22,384 KB
testcase_14 AC 47 ms
5,956 KB
testcase_15 AC 460 ms
23,696 KB
testcase_16 AC 213 ms
13,388 KB
testcase_17 AC 407 ms
23,040 KB
testcase_18 AC 363 ms
22,872 KB
testcase_19 AC 412 ms
23,144 KB
testcase_20 AC 275 ms
15,772 KB
testcase_21 AC 121 ms
8,892 KB
testcase_22 AC 49 ms
5,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#ifdef LOCAL
#include "debug.hpp"
#else
#define debug(...) 42
#endif

#define PII pair<int, int>
#define vec vector
#define str string
#define fi first
#define se second
#define all(a) (a).begin(), (a).end()
#define SZ(x) static_cast<int>((x).size())

using db = double;
using ll = long long;

struct DSU {
    vec<int> p;
    DSU(int _) : p(_ + 1) { iota(all(p), 0); }
    int f(int _) { return _ == p[_] ? _ : p[_] = f(p[_]); }
    bool same(int u, int v) { return f(u) == f(v); }
    bool unite(int u, int v) {
        u = f(u), v = f(v);
        if (u == v) return false;
        return p[u] = v, true;
    }
};

tuple<ll, vec<PII>> ManMST(vec<int> xs, vec<int> ys) {
    vec<int> id(SZ(xs));
    iota(all(id), 0);
    vec<tuple<ll, int, int>> edges;
    for (int s = 0; s < 2; s++) {
        for (int t = 0; t < 2; t++) {
            sort(all(id), [&](int i, int j) { return xs[i] + ys[i] < xs[j] + ys[j]; });
            map<int, int> sweep;
            for (int i : id) {
                for (auto it = sweep.lower_bound(-ys[i]); it != sweep.end(); it = sweep.erase(it)) {
                    int j = it->se;
                    if (xs[i] - xs[j] < ys[i] - ys[j]) break;
                    int w = abs(xs[i] - xs[j]) + abs(ys[i] - ys[j]);
                    edges.emplace_back(w, i, j);
                }
                sweep[-ys[i]] = i;
            }
            swap(xs, ys);
        }
        for (auto& x : xs) x = -x;
    }
    ll mst = 0;
    DSU dsu = DSU(SZ(xs));
    vec<PII> P;
    sort(all(edges));
    for (auto [w, u, v] : edges) {
        if (dsu.unite(u, v)) {
            mst += w, P.emplace_back(u, v);
        }
    }
    return {mst, P};
}

const int INF = (1 << 30) - 1;

void SingleTest(int TestCase) {
    int n;
    cin >> n;
    vec<int> xs(n), ys(n);
    for (int i = 0; i < n; i++) {
        cin >> xs[i] >> ys[i];
    }
    auto [mst, P] = ManMST(xs, ys);
    vector<vector<int>> v(n);
    for (auto [a, b] : P) {
        v[a].push_back(b);
        v[b].push_back(a);
    }
    int max_x = -INF, min_x = INF, max_y = -INF, min_y = INF;
    for (int i = 0; i < n; i++) {
        int x = xs[i] + ys[i], y = xs[i] - ys[i];
        max_x = max(max_x, x);
        min_x = min(min_x, x);
        max_y = max(max_y, y);
        min_y = min(min_y, y);
    }
    int ans = INF;
    for (int i = 0; i < n; i++) {
        int mini = INF;
        for (int e : v[i]) {
            mini = min(mini, abs(xs[i] - xs[e]) + abs(ys[i] - ys[e]));
        }
        int x = xs[i] + ys[i], y = xs[i] - ys[i];
        int maxi = max({abs(max_x - x), abs(min_x - x), abs(max_y - y), abs(min_y - y)});
        ans = min(ans, maxi - mini);
    }
    cout << ans << '\n';
}

void init() {}

int main() {
    cin.tie(nullptr)->sync_with_stdio(false);
    // cout << fixed << setprecision(10);
    int T = 1, TestCase = 0;
    // cin >> T;
    for (init(); T--;) SingleTest(++TestCase);
    return 0;
}
0