結果

問題 No.2179 Planet Traveler
ユーザー MasKoaTSMasKoaTS
提出日時 2022-08-03 13:48:31
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,364 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 131,196 KB
最終ジャッジ日時 2024-05-07 20:25:20
合計ジャッジ時間 7,815 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
86,848 KB
testcase_01 AC 101 ms
79,696 KB
testcase_02 AC 105 ms
79,956 KB
testcase_03 AC 108 ms
79,800 KB
testcase_04 AC 102 ms
79,840 KB
testcase_05 AC 101 ms
79,856 KB
testcase_06 AC 102 ms
79,500 KB
testcase_07 AC 120 ms
81,344 KB
testcase_08 AC 343 ms
82,548 KB
testcase_09 AC 271 ms
82,012 KB
testcase_10 AC 284 ms
82,300 KB
testcase_11 AC 789 ms
131,196 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

# TLE(?)

import sys, math
from decimal import Decimal as dec
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 = r1 + r2 - int(dec(4 * r1 * r2) ** dec(0.5))
		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