結果

問題 No.1639 最小通信路
ユーザー kohei2019kohei2019
提出日時 2022-06-27 22:58:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 1,795 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 78,720 KB
最終ジャッジ日時 2024-11-20 06:35:12
合計ジャッジ時間 6,351 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
54,144 KB
testcase_01 AC 52 ms
54,016 KB
testcase_02 AC 146 ms
78,336 KB
testcase_03 AC 155 ms
78,208 KB
testcase_04 AC 163 ms
78,720 KB
testcase_05 AC 112 ms
76,800 KB
testcase_06 AC 122 ms
77,312 KB
testcase_07 AC 52 ms
54,144 KB
testcase_08 AC 139 ms
78,208 KB
testcase_09 AC 62 ms
62,080 KB
testcase_10 AC 80 ms
67,712 KB
testcase_11 AC 132 ms
77,568 KB
testcase_12 AC 88 ms
70,272 KB
testcase_13 AC 143 ms
78,080 KB
testcase_14 AC 52 ms
54,784 KB
testcase_15 AC 82 ms
68,224 KB
testcase_16 AC 131 ms
77,184 KB
testcase_17 AC 139 ms
78,208 KB
testcase_18 AC 61 ms
61,568 KB
testcase_19 AC 113 ms
76,800 KB
testcase_20 AC 138 ms
77,312 KB
testcase_21 AC 51 ms
54,016 KB
testcase_22 AC 88 ms
71,552 KB
testcase_23 AC 121 ms
77,312 KB
testcase_24 AC 88 ms
70,528 KB
testcase_25 AC 72 ms
65,024 KB
testcase_26 AC 57 ms
55,552 KB
testcase_27 AC 51 ms
54,400 KB
testcase_28 AC 52 ms
54,272 KB
testcase_29 AC 117 ms
77,184 KB
testcase_30 AC 139 ms
77,824 KB
testcase_31 AC 69 ms
63,872 KB
testcase_32 AC 123 ms
77,056 KB
testcase_33 AC 62 ms
61,696 KB
testcase_34 AC 119 ms
77,056 KB
testcase_35 AC 145 ms
78,208 KB
testcase_36 AC 118 ms
77,440 KB
testcase_37 AC 124 ms
77,568 KB
testcase_38 AC 52 ms
54,528 KB
testcase_39 AC 75 ms
65,920 KB
testcase_40 AC 52 ms
55,040 KB
testcase_41 AC 63 ms
61,824 KB
testcase_42 AC 128 ms
77,568 KB
testcase_43 AC 64 ms
62,336 KB
testcase_44 AC 52 ms
54,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
#unionfind経路圧縮あり
import collections
class UnionFind():
    def __init__(self, n):
        self.n = n
        self.parents = list(range(n))
        self.size0 = [1]*(n)
        self.roots = n

    def find(self, x):
        if self.parents[x] == x:
            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 self.parents[x] > self.parents[y]:
            x, y = y, x
        if x == y:
            return
        self.size0[x] += self.size0[y]
        self.roots -= 1
        self.parents[y] = x

    def size(self, x):#O(1)xが含まれる集合の要素数
        return self.size0[self.find(x)]

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

    def membersf(self, x):#取り出し部分はO(N)
        p = self.find(x)
        ret = []
        for i in range(self.n):
            if self.find(i) == p:
                ret.append(i)
        return ret

    def rootsf(self):#根の要素O(N)
        ret = []
        for i in range(self.n):
            if self.find(i) == i:
                ret.append(i)
        return ret

    def group_count(self):#根の数O(1)
        return self.roots

    def all_group_members(self):#O(N)
        ret = collections.defaultdict(lambda:[])
        for i in range(self.n):
            ret[self.find(i)].append(i)
        return ret

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

UF = UnionFind(N)
heapq.heapify(h)
rmax = 0
while h:
    C,a,b = heapq.heappop(h)
    if UF.same(a,b):
        continue
    rmax = max(rmax,C)
    UF.union(a,b)
print(rmax)
0