結果

問題 No.2179 Planet Traveler
ユーザー MasKoaTSMasKoaTS
提出日時 2022-08-03 13:13:17
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,328 bytes
コンパイル時間 429 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 128,312 KB
最終ジャッジ日時 2024-05-07 20:25:45
合計ジャッジ時間 10,287 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,864 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 40 ms
52,476 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 37 ms
52,096 KB
testcase_05 AC 35 ms
52,736 KB
testcase_06 AC 35 ms
52,480 KB
testcase_07 AC 36 ms
52,352 KB
testcase_08 AC 39 ms
54,016 KB
testcase_09 AC 43 ms
59,520 KB
testcase_10 AC 38 ms
53,504 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 564 ms
127,912 KB
testcase_14 AC 571 ms
128,312 KB
testcase_15 AC 579 ms
127,840 KB
testcase_16 AC 561 ms
127,912 KB
testcase_17 AC 557 ms
127,212 KB
testcase_18 AC 571 ms
127,240 KB
testcase_19 AC 540 ms
127,124 KB
testcase_20 AC 126 ms
83,100 KB
testcase_21 AC 573 ms
124,672 KB
testcase_22 AC 372 ms
107,000 KB
testcase_23 AC 272 ms
95,592 KB
testcase_24 AC 485 ms
122,360 KB
testcase_25 AC 379 ms
108,160 KB
testcase_26 AC 491 ms
124,616 KB
testcase_27 AC 98 ms
75,136 KB
testcase_28 AC 236 ms
92,860 KB
testcase_29 AC 521 ms
122,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# WA(?)

import sys, math
input = sys.stdin.readline

class UnionFind():
	def __init__(self, n):
		self.n = n
		self.parents = [-1] * n

	def find(self, x):
		if(self.parents[x] < 0):
			return x
		self.parents[x] = self.find(self.parents[x])
		return self.parents[x]

	def unite(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

	def same(self, x, y):
		return self.find(x) == self.find(y)

	def size(self, x):
		return -self.parents[self.find(x)]

	def members(self, x):
		root = self.find(x)
		return [i for i in range(self.n) if self.find(i) == root]

	def roots(self):
		return [i for i, x in enumerate(self.parents) if x < 0]


"""
Main Code
"""

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

edge = []
for i in range(0, n-1):
	for j in range(i+1, n):
		p1 = planet[i]
		p2 = planet[j]
		d = (p1[0] - p2[0]) ** 2 + (p1[1] - p2[1]) ** 2
		if(p1[2] != p2[2]):
			r1 = p1[0] ** 2 + p1[1] ** 2
			r2 = p2[0] ** 2 + p2[1] ** 2
			d = math.ceil(r1 + r2 - math.sqrt(4 * r1 * r2))
		edge.append((i, j, d))
edge.sort(key = lambda x : x[2])

uni = UnionFind(n)
ans = 0
for a, b, c in edge:
	ans = c
	uni.unite(a, b)
	if(uni.same(0, n-1)):
		break

print(ans)
0