結果

問題 No.1998 Manhattan Restaurant
ユーザー MasKoaTSMasKoaTS
提出日時 2024-12-02 14:46:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 1,598 bytes
コンパイル時間 2,123 ms
コンパイル使用メモリ 203,964 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-02 14:46:25
合計ジャッジ時間 4,933 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 3 ms
6,820 KB
testcase_09 AC 3 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 87 ms
6,816 KB
testcase_16 AC 41 ms
6,816 KB
testcase_17 AC 55 ms
6,816 KB
testcase_18 AC 42 ms
6,816 KB
testcase_19 AC 46 ms
6,820 KB
testcase_20 AC 86 ms
6,816 KB
testcase_21 AC 114 ms
6,820 KB
testcase_22 AC 114 ms
6,820 KB
testcase_23 AC 114 ms
6,816 KB
testcase_24 AC 114 ms
6,820 KB
testcase_25 AC 6 ms
6,816 KB
testcase_26 AC 45 ms
6,816 KB
testcase_27 AC 30 ms
6,820 KB
testcase_28 AC 45 ms
6,820 KB
testcase_29 AC 33 ms
6,820 KB
testcase_30 AC 65 ms
6,816 KB
testcase_31 AC 61 ms
6,820 KB
testcase_32 AC 9 ms
6,816 KB
testcase_33 AC 40 ms
6,820 KB
testcase_34 AC 49 ms
6,816 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;


bool func(vector<pair<ll, ll> >& p, ll x_min, ll y_min, ll x_max, ll y_max, ll mid){
    mid *= 2;
    int block[2][2] = { {0, 0}, {0, 0} };
    for(auto&[x, y] : p){
        if((x < x_max - mid && x > x_min + mid) || (y < y_max - mid && y > y_min + mid)){
            return false;
        }
        if(x < x_max - mid && y < y_max - mid){
            block[0][0] = 1;
        }
        if(x > x_min + mid && y < y_max - mid){
            block[1][0] = 1;
        }
        if(x < x_max - mid && y > y_min + mid){
            block[0][1] = 1;
        }
        if(x > x_min + mid && y > y_min + mid){
            block[1][1] = 1;
        }
    }
    if((block[0][0] | block[1][1]) == 0 || (block[0][1] | block[1][0]) == 0){
		return true;
	}
	return false;
}


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 ok = INF, ng = -1;
    while(abs(ok - ng) > 1){
        ll mid = (ok + ng) / 2;
        if(func(p, x_min, y_min, x_max, y_max, mid)){
            ok = mid;
        }
        else{
            ng = mid;
        }
    }
    ll ans = ok;
    cout << ans << endl;

    return 0;
}
0