結果

問題 No.3087 University Coloring
ユーザー 👑 rin204
提出日時 2025-04-04 21:29:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 386 ms / 2,000 ms
コード長 1,191 bytes
コンパイル時間 1,030 ms
コンパイル使用メモリ 82,044 KB
実行使用メモリ 99,616 KB
最終ジャッジ日時 2025-04-04 21:31:29
合計ジャッジ時間 14,838 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n):
        self.n = n
        self.par = [-1] * n
        self.group_ = n

    def find(self, x):
        if self.par[x] < 0:
            return x
        lst = []
        while self.par[x] >= 0:
            lst.append(x)
            x = self.par[x]
        for y in lst:
            self.par[y] = x
        return x

    def unite(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return False

        if self.par[x] > self.par[y]:
            x, y = y, x

        self.par[x] += self.par[y]
        self.par[y] = x
        self.group_ -= 1
        return True

    def size(self, x):
        return -self.par[self.find(x)]

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

    @property
    def group(self):
        return self.group_


n, m = map(int, input().split())
E = []
C = []
for i in range(m):
    a, b, c = map(int, input().split())
    a -= 1
    b -= 1
    E.append((a, b))
    C.append(c * m + i)

C.sort(reverse=True)
ans = 0
UF = UnionFind(n)

for tmp in C:
    c = tmp // m
    i = tmp - c * m
    a, b = E[i]
    if UF.unite(a, b):
        ans += c
print(2 * ans)
0