結果

問題 No.1639 最小通信路
ユーザー ntudantuda
提出日時 2021-08-18 22:19:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 1,470 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 77,520 KB
最終ジャッジ日時 2024-10-11 22:10:08
合計ジャッジ時間 4,405 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,420 KB
testcase_01 AC 39 ms
53,356 KB
testcase_02 AC 80 ms
77,048 KB
testcase_03 AC 94 ms
77,460 KB
testcase_04 AC 93 ms
77,500 KB
testcase_05 AC 78 ms
73,420 KB
testcase_06 AC 75 ms
73,704 KB
testcase_07 AC 39 ms
53,096 KB
testcase_08 AC 81 ms
76,948 KB
testcase_09 AC 43 ms
54,812 KB
testcase_10 AC 55 ms
63,300 KB
testcase_11 AC 76 ms
74,276 KB
testcase_12 AC 59 ms
66,112 KB
testcase_13 AC 83 ms
76,892 KB
testcase_14 AC 40 ms
53,756 KB
testcase_15 AC 55 ms
63,884 KB
testcase_16 AC 77 ms
74,448 KB
testcase_17 AC 81 ms
76,896 KB
testcase_18 AC 43 ms
53,756 KB
testcase_19 AC 74 ms
73,012 KB
testcase_20 AC 81 ms
76,964 KB
testcase_21 AC 39 ms
53,176 KB
testcase_22 AC 61 ms
66,792 KB
testcase_23 AC 75 ms
73,784 KB
testcase_24 AC 59 ms
67,180 KB
testcase_25 AC 50 ms
61,924 KB
testcase_26 AC 42 ms
53,856 KB
testcase_27 AC 41 ms
54,316 KB
testcase_28 AC 39 ms
53,744 KB
testcase_29 AC 79 ms
75,212 KB
testcase_30 AC 86 ms
77,396 KB
testcase_31 AC 46 ms
55,720 KB
testcase_32 AC 87 ms
77,520 KB
testcase_33 AC 44 ms
54,540 KB
testcase_34 AC 85 ms
77,060 KB
testcase_35 AC 92 ms
77,244 KB
testcase_36 AC 78 ms
74,948 KB
testcase_37 AC 87 ms
76,916 KB
testcase_38 AC 40 ms
52,876 KB
testcase_39 AC 51 ms
61,736 KB
testcase_40 AC 42 ms
53,840 KB
testcase_41 AC 43 ms
55,412 KB
testcase_42 AC 86 ms
77,460 KB
testcase_43 AC 45 ms
54,796 KB
testcase_44 AC 41 ms
53,616 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
 
    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):
        return {r: self.members(r) for r in self.roots()}
 
    def __str__(self):
        return '\n'.join('{}: {}'.format(r, self.members(r)) for r in self.roots())
 
 
N = int(input())
ABC = [list(map(int,input().split())) for _ in range(N*(N-1)//2)]

ABC.sort(key = lambda x:x[2])

uf = UnionFind(N)

ctd = set()
ans = 0
path = []
for abc in ABC:
    a,b,c = abc
    a -= 1
    b -= 1
    if uf.find(a) != uf.find(b):
        ans = max(ans,c)
        uf.union(a,b)
print(ans)
0