結果

問題 No.1639 最小通信路
ユーザー irumo8202irumo8202
提出日時 2022-02-13 14:12:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 1,423 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-06-29 05:35:07
合計ジャッジ時間 4,676 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,632 KB
testcase_01 AC 49 ms
53,888 KB
testcase_02 AC 93 ms
76,800 KB
testcase_03 AC 102 ms
76,928 KB
testcase_04 AC 109 ms
77,056 KB
testcase_05 AC 80 ms
70,144 KB
testcase_06 AC 84 ms
71,296 KB
testcase_07 AC 47 ms
53,632 KB
testcase_08 AC 83 ms
73,472 KB
testcase_09 AC 50 ms
55,040 KB
testcase_10 AC 61 ms
63,104 KB
testcase_11 AC 81 ms
72,320 KB
testcase_12 AC 66 ms
64,768 KB
testcase_13 AC 91 ms
76,928 KB
testcase_14 AC 46 ms
54,144 KB
testcase_15 AC 64 ms
63,104 KB
testcase_16 AC 81 ms
72,320 KB
testcase_17 AC 84 ms
73,344 KB
testcase_18 AC 50 ms
54,912 KB
testcase_19 AC 80 ms
70,272 KB
testcase_20 AC 85 ms
73,600 KB
testcase_21 AC 46 ms
53,632 KB
testcase_22 AC 67 ms
65,152 KB
testcase_23 AC 81 ms
71,040 KB
testcase_24 AC 66 ms
64,512 KB
testcase_25 AC 56 ms
56,704 KB
testcase_26 AC 50 ms
54,528 KB
testcase_27 AC 49 ms
54,016 KB
testcase_28 AC 48 ms
54,016 KB
testcase_29 AC 88 ms
73,472 KB
testcase_30 AC 96 ms
76,672 KB
testcase_31 AC 53 ms
55,936 KB
testcase_32 AC 88 ms
73,856 KB
testcase_33 AC 51 ms
55,168 KB
testcase_34 AC 87 ms
73,216 KB
testcase_35 AC 100 ms
77,056 KB
testcase_36 AC 87 ms
73,216 KB
testcase_37 AC 89 ms
74,496 KB
testcase_38 AC 48 ms
53,760 KB
testcase_39 AC 56 ms
56,704 KB
testcase_40 AC 49 ms
54,272 KB
testcase_41 AC 51 ms
55,168 KB
testcase_42 AC 97 ms
77,184 KB
testcase_43 AC 52 ms
55,424 KB
testcase_44 AC 47 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
ABC = [list(map(int, input().split())) for _ in range(N*(N-1)//2)]

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


uf = UnionFind(N+1)
for a, b, c in ABC:
    if uf.same(a, b):
        continue
    uf.union(a, b)
    if uf.size(1) ==N:
        print(c)
        exit()
0