結果

問題 No.1998 Manhattan Restaurant
ユーザー tamatotamato
提出日時 2022-07-01 22:51:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 1,820 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 82,364 KB
最終ジャッジ日時 2024-05-04 17:15:08
合計ジャッジ時間 4,192 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,820 KB
testcase_01 AC 34 ms
52,772 KB
testcase_02 AC 34 ms
52,764 KB
testcase_03 AC 32 ms
53,616 KB
testcase_04 AC 32 ms
53,284 KB
testcase_05 AC 32 ms
53,672 KB
testcase_06 AC 42 ms
60,656 KB
testcase_07 AC 64 ms
71,212 KB
testcase_08 AC 49 ms
65,632 KB
testcase_09 AC 63 ms
71,180 KB
testcase_10 AC 42 ms
60,560 KB
testcase_11 AC 49 ms
60,152 KB
testcase_12 AC 39 ms
58,908 KB
testcase_13 AC 42 ms
59,508 KB
testcase_14 AC 51 ms
62,744 KB
testcase_15 AC 118 ms
81,060 KB
testcase_16 AC 88 ms
78,724 KB
testcase_17 AC 95 ms
81,804 KB
testcase_18 AC 87 ms
78,824 KB
testcase_19 AC 99 ms
79,964 KB
testcase_20 AC 115 ms
81,416 KB
testcase_21 AC 156 ms
81,832 KB
testcase_22 AC 145 ms
82,364 KB
testcase_23 AC 168 ms
81,712 KB
testcase_24 AC 158 ms
81,716 KB
testcase_25 AC 53 ms
67,452 KB
testcase_26 AC 88 ms
79,472 KB
testcase_27 AC 82 ms
77,936 KB
testcase_28 AC 84 ms
79,344 KB
testcase_29 AC 77 ms
77,656 KB
testcase_30 AC 101 ms
81,332 KB
testcase_31 AC 105 ms
81,204 KB
testcase_32 AC 59 ms
70,820 KB
testcase_33 AC 86 ms
78,572 KB
testcase_34 AC 93 ms
79,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
inf = 2 * 10 ** 9 + 1


def main():
    import sys
    input = sys.stdin.readline

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

    u_min = inf
    u_max = -inf
    v_min = inf
    v_max = -inf
    for u, v in UV:
        u_min = min(u_min, u)
        u_max = max(u_max, u)
        v_min = min(v_min, v)
        v_max = max(v_max, v)

    ok = inf
    ng = -1
    mid = (ok + ng) // 2
    while ok - ng > 1:
        u0_min = u_min
        u0_max = u_min + mid * 2
        v0_min = v_min
        v0_max = v_min + mid * 2
        u1_min = u_max - mid * 2
        u1_max = u_max
        v1_min = v_max - mid * 2
        v1_max = v_max
        flg = 1
        for u, v in UV:
            tmp = 0
            if u0_min <= u <= u0_max and v0_min <= v <= v0_max:
                tmp = 1
            if u1_min <= u <= u1_max and v1_min <= v <= v1_max:
                tmp = 1
            if tmp == 0:
                flg = 0
                break
        if flg:
            ok = mid
            mid = (ok + ng) // 2
            continue

        u0_min = u_min
        u0_max = u_min + mid * 2
        v0_min = v_max - mid * 2
        v0_max = v_max
        u1_min = u_max - mid * 2
        u1_max = u_max
        v1_min = v_min
        v1_max = v_min + mid * 2
        flg = 1
        for u, v in UV:
            tmp = 0
            if u0_min <= u <= u0_max and v0_min <= v <= v0_max:
                tmp = 1
            if u1_min <= u <= u1_max and v1_min <= v <= v1_max:
                tmp = 1
            if tmp == 0:
                flg = 0
                break
        if flg:
            ok = mid
        else:
            ng = mid
        mid = (ok + ng) // 2
    print(ok)


if __name__ == '__main__':
    main()
0