結果

問題 No.1998 Manhattan Restaurant
ユーザー MasKoaTSMasKoaTS
提出日時 2024-12-02 14:11:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 204 ms / 2,000 ms
コード長 1,146 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 82,744 KB
最終ジャッジ日時 2024-12-02 14:11:07
合計ジャッジ時間 5,077 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,340 KB
testcase_01 AC 38 ms
52,608 KB
testcase_02 AC 37 ms
52,736 KB
testcase_03 AC 41 ms
52,608 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 38 ms
52,736 KB
testcase_06 AC 46 ms
60,160 KB
testcase_07 AC 53 ms
63,232 KB
testcase_08 AC 54 ms
63,744 KB
testcase_09 AC 53 ms
63,480 KB
testcase_10 AC 43 ms
59,224 KB
testcase_11 AC 49 ms
59,776 KB
testcase_12 AC 48 ms
58,112 KB
testcase_13 AC 43 ms
58,624 KB
testcase_14 AC 47 ms
60,928 KB
testcase_15 AC 117 ms
82,444 KB
testcase_16 AC 104 ms
80,128 KB
testcase_17 AC 113 ms
82,380 KB
testcase_18 AC 104 ms
80,012 KB
testcase_19 AC 107 ms
80,360 KB
testcase_20 AC 123 ms
82,560 KB
testcase_21 AC 192 ms
82,236 KB
testcase_22 AC 204 ms
82,744 KB
testcase_23 AC 178 ms
81,852 KB
testcase_24 AC 177 ms
81,976 KB
testcase_25 AC 62 ms
69,760 KB
testcase_26 AC 106 ms
80,512 KB
testcase_27 AC 130 ms
79,104 KB
testcase_28 AC 107 ms
80,496 KB
testcase_29 AC 97 ms
78,172 KB
testcase_30 AC 123 ms
82,048 KB
testcase_31 AC 119 ms
81,796 KB
testcase_32 AC 84 ms
71,680 KB
testcase_33 AC 109 ms
80,364 KB
testcase_34 AC 112 ms
81,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
INF = 10 ** 18

N = int(input())
P = []
for _ in [0] * N:
    x, y = map(int, input().split())
    P.append((x + y, x - y))

max_x = max_y = -INF
min_x = min_y = INF
for x, y in P:
    if(max_x < x):
        max_x = x
    if(max_y < y):
        max_y = y
    if(min_x > x):
        min_x = x
    if(min_y > y):
        min_y = y

def func(mid):
    mid *= 2
    block = [[0] * 2 for _ in [0] * 2]
    for x, y in P:
        if((x < max_x - mid and x > min_x + mid) or (y < max_y - mid and y > min_y + mid)):
            return False
        if(x < max_x - mid and y < max_y - mid):
            block[0][0] = 1
        if(x > min_x + mid and y < max_y - mid):
            block[1][0] = 1
        if(x < max_x - mid and y > min_y + mid):
            block[0][1] = 1
        if(x > min_x + mid and y > min_y + mid):
            block[1][1] = 1
    if((block[0][0] | block[1][1]) == 0 or (block[0][1] | block[1][0]) == 0):
        return True
    return False

ok = 2 * 10 ** 9 + 1
ng = -1
while(abs(ok - ng) > 1):
    mid = (ok + ng) // 2
    if func(mid):
        ok = mid
    else:
        ng = mid
print(ok)
0