結果

問題 No.1998 Manhattan Restaurant
ユーザー t98slidert98slider
提出日時 2022-07-02 20:24:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,065 bytes
コンパイル時間 1,987 ms
コンパイル使用メモリ 180,424 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-05-05 17:50:29
合計ジャッジ時間 4,185 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 WA -
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 WA -
testcase_14 AC 2 ms
5,376 KB
testcase_15 WA -
testcase_16 AC 44 ms
5,504 KB
testcase_17 AC 67 ms
6,400 KB
testcase_18 AC 45 ms
5,376 KB
testcase_19 AC 50 ms
5,760 KB
testcase_20 WA -
testcase_21 AC 104 ms
7,040 KB
testcase_22 AC 104 ms
7,168 KB
testcase_23 AC 104 ms
7,296 KB
testcase_24 AC 112 ms
7,168 KB
testcase_25 AC 7 ms
5,376 KB
testcase_26 AC 50 ms
5,632 KB
testcase_27 AC 34 ms
5,376 KB
testcase_28 AC 50 ms
5,760 KB
testcase_29 AC 35 ms
5,376 KB
testcase_30 AC 72 ms
6,912 KB
testcase_31 AC 67 ms
6,528 KB
testcase_32 AC 9 ms
5,376 KB
testcase_33 AC 44 ms
5,504 KB
testcase_34 AC 53 ms
6,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    int n;
    cin >> n;
    vector<pair<ll,ll>> a(n);
    for(auto &&p:a)cin >> p.first >> p.second;
    auto dist = [&](int i, int j){
        return abs(a[i].first - a[j].first) + abs(a[i].second - a[j].second);
    };
    vector<int> pos1(n), pos2;
    iota(pos1.begin(), pos1.end(), 0);
    pos2 = pos1;
    sort(pos1.begin(), pos1.end(), [&](int i, int j){
        return a[i].first + a[i].second < a[j].first + a[j].second;
    });
    sort(pos2.begin(), pos2.end(), [&](int i, int j){
        return a[i].first - a[i].second < a[j].first - a[j].second;
    });
    vector<ll> c(n), d(n);
    for(int i = 0; i < n; i++){
        c[i] = min(max(dist(i, pos1[0]), dist(i, pos2[0])), max(dist(i, pos1[n - 1]), dist(i, pos2[n - 1])));
        d[i] = min(max(dist(i, pos1[0]), dist(i, pos2[n - 1])), max(dist(i, pos1[n - 1]), dist(i, pos2[0])));
    }
    ll ans = *max_element(c.begin(), c.end());
    ans = min(ans, *max_element(d.begin(), d.end()));
    cout << ans / 2 << '\n';
}
0