結果

問題 No.1998 Manhattan Restaurant
ユーザー MasKoaTSMasKoaTS
提出日時 2022-03-24 13:49:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 258 ms / 2,000 ms
コード長 980 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 82,112 KB
最終ジャッジ日時 2024-09-21 02:05:16
合計ジャッジ時間 4,755 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 36 ms
52,352 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 35 ms
52,352 KB
testcase_04 AC 36 ms
52,096 KB
testcase_05 AC 37 ms
51,968 KB
testcase_06 AC 44 ms
58,752 KB
testcase_07 AC 52 ms
62,336 KB
testcase_08 AC 53 ms
62,592 KB
testcase_09 AC 54 ms
62,592 KB
testcase_10 AC 47 ms
58,240 KB
testcase_11 AC 44 ms
58,752 KB
testcase_12 AC 44 ms
57,856 KB
testcase_13 AC 43 ms
57,600 KB
testcase_14 AC 50 ms
60,288 KB
testcase_15 AC 124 ms
81,792 KB
testcase_16 AC 101 ms
78,848 KB
testcase_17 AC 107 ms
81,664 KB
testcase_18 AC 102 ms
79,616 KB
testcase_19 AC 105 ms
79,744 KB
testcase_20 AC 127 ms
82,048 KB
testcase_21 AC 243 ms
82,112 KB
testcase_22 AC 257 ms
81,740 KB
testcase_23 AC 250 ms
81,860 KB
testcase_24 AC 258 ms
81,856 KB
testcase_25 AC 62 ms
66,688 KB
testcase_26 AC 109 ms
79,616 KB
testcase_27 AC 94 ms
78,208 KB
testcase_28 AC 106 ms
79,744 KB
testcase_29 AC 90 ms
77,952 KB
testcase_30 AC 113 ms
81,792 KB
testcase_31 AC 109 ms
81,792 KB
testcase_32 AC 65 ms
69,120 KB
testcase_33 AC 99 ms
78,976 KB
testcase_34 AC 102 ms
80,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def main():
	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

	ok = 2 * 10 ** 9 + 1
	ng = -1
	while(ok - ng > 1):
		k = ok + ng
		f = False
		block = [[0] * 2 for _ in [0] * 2]
		for x, y in P:
			if((x < max_x - k and x > min_x + k) or (y < max_y - k and y > min_y + k)):
				break
			if(x < max_x - k and y < max_y - k):
				block[0][0] = 1
			if(x > min_x + k and y < max_y - k):
				block[1][0] = 1
			if(x < max_x - k and y > min_y + k):
				block[0][1] = 1
			if(x > min_x + k and y > min_y + k):
				block[1][1] = 1
		else:
			if((block[0][0] | block[1][1]) == 0 or (block[0][1] | block[1][0]) == 0):
				f = True
		if(f):
			ok = k // 2
		else:
			ng = k // 2
	print(ok)

main()
0