結果

問題 No.1639 最小通信路
ユーザー takeya_okinotakeya_okino
提出日時 2021-09-25 14:36:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 1,558 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-07-05 12:05:26
合計ジャッジ時間 4,341 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,632 KB
testcase_01 AC 40 ms
54,272 KB
testcase_02 AC 78 ms
76,968 KB
testcase_03 AC 87 ms
77,148 KB
testcase_04 AC 85 ms
77,312 KB
testcase_05 AC 72 ms
72,960 KB
testcase_06 AC 73 ms
73,600 KB
testcase_07 AC 42 ms
53,888 KB
testcase_08 AC 77 ms
76,800 KB
testcase_09 AC 44 ms
55,040 KB
testcase_10 AC 55 ms
63,488 KB
testcase_11 AC 73 ms
74,492 KB
testcase_12 AC 58 ms
65,792 KB
testcase_13 AC 77 ms
76,788 KB
testcase_14 AC 40 ms
53,760 KB
testcase_15 AC 54 ms
63,488 KB
testcase_16 AC 72 ms
74,368 KB
testcase_17 AC 77 ms
77,508 KB
testcase_18 AC 44 ms
55,040 KB
testcase_19 AC 71 ms
72,448 KB
testcase_20 AC 79 ms
76,800 KB
testcase_21 AC 42 ms
53,888 KB
testcase_22 AC 58 ms
66,264 KB
testcase_23 AC 73 ms
73,344 KB
testcase_24 AC 57 ms
65,536 KB
testcase_25 AC 51 ms
62,464 KB
testcase_26 AC 45 ms
54,912 KB
testcase_27 AC 43 ms
53,888 KB
testcase_28 AC 43 ms
54,272 KB
testcase_29 AC 77 ms
74,748 KB
testcase_30 AC 81 ms
77,056 KB
testcase_31 AC 47 ms
56,576 KB
testcase_32 AC 82 ms
77,456 KB
testcase_33 AC 46 ms
55,936 KB
testcase_34 AC 81 ms
77,056 KB
testcase_35 AC 85 ms
77,696 KB
testcase_36 AC 76 ms
74,496 KB
testcase_37 AC 85 ms
76,992 KB
testcase_38 AC 41 ms
54,272 KB
testcase_39 AC 52 ms
62,208 KB
testcase_40 AC 44 ms
54,400 KB
testcase_41 AC 45 ms
55,936 KB
testcase_42 AC 83 ms
77,436 KB
testcase_43 AC 48 ms
56,064 KB
testcase_44 AC 43 ms
54,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A=[]

for i in range((n * (n - 1)) // 2):
  a, b, c = map(int, input().split())
  A.append([c, a - 1, b - 1])

A.sort()
 
from collections import defaultdict
 
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
 
    def size(self, x):
        return -self.parents[self.find(x)]
 
    def same(self, x, y):
        return self.find(x) == self.find(y)
 
    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]
 
    def group_count(self):
        return len(self.roots())
 
    def all_group_members(self):
        group_members = defaultdict(list)
        for member in range(self.n):
            group_members[self.find(member)].append(member)
        return group_members
 
    def __str__(self):
   	     return '\n'.join(f'{r}: {m}' for r, m in self.all_group_members().items())

ans = 0

uf = UnionFind(n)

for [c, a, b] in A:
  if not uf.same(a,b):
    ans = c
    uf.union(a,b)

print(ans)
0