結果

問題 No.1998 Manhattan Restaurant
ユーザー MasKoaTSMasKoaTS
提出日時 2022-03-19 16:29:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 738 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 589,912 KB
最終ジャッジ日時 2024-12-01 21:13:03
合計ジャッジ時間 68,622 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
15,744 KB
testcase_01 MLE -
testcase_02 AC 26 ms
15,872 KB
testcase_03 MLE -
testcase_04 AC 27 ms
15,872 KB
testcase_05 MLE -
testcase_06 AC 591 ms
44,672 KB
testcase_07 MLE -
testcase_08 AC 1,099 ms
53,760 KB
testcase_09 MLE -
testcase_10 AC 427 ms
38,784 KB
testcase_11 MLE -
testcase_12 AC 48 ms
17,280 KB
testcase_13 MLE -
testcase_14 AC 637 ms
52,480 KB
testcase_15 MLE -
testcase_16 TLE -
testcase_17 MLE -
testcase_18 TLE -
testcase_19 MLE -
testcase_20 TLE -
testcase_21 MLE -
testcase_22 TLE -
testcase_23 MLE -
testcase_24 TLE -
testcase_25 MLE -
testcase_26 TLE -
testcase_27 MLE -
testcase_28 TLE -
testcase_29 MLE -
testcase_30 MLE -
testcase_31 MLE -
testcase_32 MLE -
testcase_33 MLE -
testcase_34 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
P = [list(map(int, input().split())) for _ in [0] * N]

route = [[] for _ in [0] * N]
for i in range(N - 1):
	for j in range(i + 1, N):
		d = abs(P[i][0] - P[j][0]) + abs(P[i][1] - P[j][1])
		route[i].append((j, d))
		route[j].append((i, d))

def func(d):
	c = [0] * N
	for v in range(N):
		if(c[v]):
			continue
		c[v] = 1
		que = [v]
		while(que):
			now = que.pop()
			for nv, nd in route[now]:
				if(nd <= d):
					continue
				if(c[nv] == 0):
					c[nv] = -c[now]
					que.append(nv)
				elif(c[nv] == c[now]):
					return False
	return True

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

ans = ok // 2
print(ans)
0