結果

問題 No.1998 Manhattan Restaurant
ユーザー MasKoaTSMasKoaTS
提出日時 2024-12-02 14:52:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 829 bytes
コンパイル時間 1,959 ms
コンパイル使用メモリ 202,876 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-02 14:53:10
合計ジャッジ時間 4,140 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 1 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 67 ms
5,248 KB
testcase_16 AC 32 ms
5,248 KB
testcase_17 AC 43 ms
5,248 KB
testcase_18 AC 33 ms
5,248 KB
testcase_19 AC 38 ms
5,248 KB
testcase_20 AC 68 ms
5,248 KB
testcase_21 AC 83 ms
5,248 KB
testcase_22 AC 79 ms
5,248 KB
testcase_23 AC 90 ms
5,248 KB
testcase_24 AC 83 ms
5,248 KB
testcase_25 AC 6 ms
5,248 KB
testcase_26 AC 36 ms
5,248 KB
testcase_27 AC 28 ms
5,248 KB
testcase_28 AC 37 ms
5,248 KB
testcase_29 AC 26 ms
5,248 KB
testcase_30 AC 51 ms
5,248 KB
testcase_31 AC 47 ms
5,248 KB
testcase_32 AC 7 ms
5,248 KB
testcase_33 AC 33 ms
5,248 KB
testcase_34 AC 37 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define INF 4611686018427387903ll
#define chmin(x, y) if(x > (y)){ x = (y); }
#define chmax(x, y) if(x < (y)){ x = (y); }
using namespace std;
using ll = long long;


int main(){
    int n;  cin >> n;
    vector<pair<ll, ll> > p(n);
    for(auto&[xp, yp] : p){
        int x, y;   cin >> x >> y;
        xp = x + y, yp = x - y; 
    }

    ll x_min = INF, y_min = INF;
    ll x_max = -INF, y_max = -INF;
    for(auto&[x, y] : p){
        chmin(x_min, x);    chmin(y_min, y);
        chmax(x_max, x);    chmax(y_max, y);
    }

    ll a = 0, b = 0;
    for(auto&[x, y] : p){
        chmax(a, min(max(x_max - x, y_max - y), max(x - x_min, y - y_min)));
        chmax(b, min(max(x_max - x, y - y_min), max(x - x_min, y_max - y)));
    }
    ll ans = min(a, b) / 2;
    cout << ans << endl;

    return 0;
}
0