結果

問題 No.2436 Min Diff Distance
ユーザー kuronikuroni
提出日時 2023-08-18 22:34:58
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 544 ms / 2,000 ms
コード長 1,737 bytes
コンパイル時間 3,065 ms
コンパイル使用メモリ 261,584 KB
実行使用メモリ 13,652 KB
最終ジャッジ日時 2024-05-06 04:55:12
合計ジャッジ時間 10,657 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 544 ms
13,528 KB
testcase_04 AC 523 ms
13,528 KB
testcase_05 AC 523 ms
13,648 KB
testcase_06 AC 510 ms
13,520 KB
testcase_07 AC 514 ms
13,652 KB
testcase_08 AC 507 ms
13,528 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 255 ms
13,512 KB
testcase_12 AC 256 ms
13,528 KB
testcase_13 AC 322 ms
11,660 KB
testcase_14 AC 45 ms
5,376 KB
testcase_15 AC 494 ms
13,244 KB
testcase_16 AC 218 ms
8,116 KB
testcase_17 AC 428 ms
12,580 KB
testcase_18 AC 379 ms
12,088 KB
testcase_19 AC 454 ms
12,752 KB
testcase_20 AC 292 ms
9,092 KB
testcase_21 AC 118 ms
5,928 KB
testcase_22 AC 48 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

const int INF = 1E9;

int min_op(int u, int v) { return min(u, v); }
int min_e() { return INF; }
int max_op(int u, int v) { return max(u, v); }
int max_e() { return -INF; }

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
    int n; cin >> n;
    vector<int> x(n), y(n);
    for (int i = 0; i < n; i++) {
        cin >> x[i] >> y[i];
    }
    vector<int> mx(n, -INF), mi(n, INF);
    auto solve = [&]() {
        vector<int> p(n), prc(n);
        iota(p.begin(), p.end(), 0);
        iota(prc.begin(), prc.end(), 0);
        sort(p.begin(), p.end(), [&](int u, int v) {
            return pair(x[u], y[u]) < pair(x[v], y[v]);
        });
        vector<int> pos(n);
        for (int i = 0; i < n; i++) {
            pos[p[i]] = i;
        }
        sort(prc.begin(), prc.end(), [&](int u, int v) {
            return pair(y[u], pos[u]) < pair(y[v], pos[v]);
        });
        segtree<int, min_op, min_e> mis(n);
        segtree<int, max_op, max_e> mas(n);
        for (int v : prc) {
            int sum = x[v] + y[v];
            mi[v] = min(mi[v], sum - mas.prod(0, pos[v]));
            mx[v] = max(mx[v], sum - mis.prod(0, pos[v]));
            mas.set(pos[v], sum);
            mis.set(pos[v], sum);
        }
    };
    for (int sx = 0; sx < 2; sx++) {
        for (int sy = 0; sy < 2; sy++) {
            solve();
            transform(y.begin(), y.end(), y.begin(), [](int u) { return -u; });
        }
        transform(x.begin(), x.end(), x.begin(), [](int u) { return -u; });
    }
    int ans = INF;
    for (int i = 0; i < n; i++) {
        ans = min(ans, mx[i] - mi[i]);
    }
    cout << ans;
}
0