結果

問題 No.2179 Planet Traveler
ユーザー shobonvipshobonvip
提出日時 2023-01-06 22:10:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 325 ms / 3,000 ms
コード長 1,277 bytes
コンパイル時間 967 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 101,760 KB
最終ジャッジ日時 2024-11-30 18:19:02
合計ジャッジ時間 6,120 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 40 ms
52,480 KB
testcase_03 AC 39 ms
52,352 KB
testcase_04 AC 40 ms
52,480 KB
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 40 ms
52,352 KB
testcase_07 AC 48 ms
60,800 KB
testcase_08 AC 52 ms
62,592 KB
testcase_09 AC 53 ms
63,104 KB
testcase_10 AC 52 ms
62,080 KB
testcase_11 AC 148 ms
95,616 KB
testcase_12 AC 275 ms
94,848 KB
testcase_13 AC 325 ms
100,736 KB
testcase_14 AC 157 ms
101,760 KB
testcase_15 AC 160 ms
101,536 KB
testcase_16 AC 148 ms
98,304 KB
testcase_17 AC 317 ms
101,248 KB
testcase_18 AC 324 ms
101,600 KB
testcase_19 AC 308 ms
100,864 KB
testcase_20 AC 95 ms
74,624 KB
testcase_21 AC 307 ms
98,324 KB
testcase_22 AC 229 ms
91,008 KB
testcase_23 AC 188 ms
85,376 KB
testcase_24 AC 278 ms
95,232 KB
testcase_25 AC 226 ms
91,008 KB
testcase_26 AC 284 ms
97,980 KB
testcase_27 AC 91 ms
71,680 KB
testcase_28 AC 168 ms
85,632 KB
testcase_29 AC 288 ms
95,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
	def __init__(self, n):
		self.n = n
		self.parents = [-1] * n
	
	def find(self, x):
		if self.parents[x] < 0:
			return x
		else:
			self.parents[x] = self.find(self.parents[x])
			return self.parents[x]
	
	def union(self, x, y):
		x = self.find(x)
		y = self.find(y)
		if x == y:
			return
		if self.parents[x] > self.parents[y]:
			x, y = y, x
		self.parents[x] += self.parents[y]
		self.parents[y] = x

n = int(input())
x = [0] * n
y = [0] * n
t = [0] * n
uf = UnionFind(n)

for i in range(n):
	x[i], y[i], t[i] = map(int,input().split())

a = []
dist = 0
for i in range(n):
	for j in range(i+1, n):
		if t[i] == t[j]:
			dist = (x[i] - x[j]) ** 2 + (y[i] - y[j]) ** 2
		else:
			p2 = x[i] ** 2 + y[i] ** 2
			q2 = x[j] ** 2 + y[j] ** 2
			p2, q2 = min(p2, q2), max(p2, q2)
			suki = 10 ** 12
			kirai = -1
			while suki - kirai > 1:
				targ = (suki + kirai) // 2
				tmp = q2 - p2 - targ
				if tmp <= 0 or tmp * tmp <= 4 * targ * p2:
					suki = targ
				else:
					kirai = targ
			dist = suki
			#print(dist)
		a.append((dist << 30) + (i << 15) + j)

a.sort()
mask = (1 << 15) - 1
ans = 0
for v in a:
	dist = v >> 30
	i = (v >> 15) & mask
	j = v & mask
	ans = dist
	#print(dist, i, j)
	uf.union(i, j)
	if uf.find(0) == uf.find(n-1):
		break

print(ans)
0