結果

問題 No.748 yuki国のお財布事情
ユーザー rlangevinrlangevin
提出日時 2023-07-16 13:04:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 526 ms / 2,000 ms
コード長 1,334 bytes
コンパイル時間 1,041 ms
コンパイル使用メモリ 81,864 KB
実行使用メモリ 100,188 KB
最終ジャッジ日時 2024-09-17 12:43:35
合計ジャッジ時間 7,557 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,424 KB
testcase_01 AC 35 ms
52,672 KB
testcase_02 AC 36 ms
53,204 KB
testcase_03 AC 36 ms
53,312 KB
testcase_04 AC 34 ms
52,416 KB
testcase_05 AC 33 ms
52,624 KB
testcase_06 AC 39 ms
52,456 KB
testcase_07 AC 34 ms
52,768 KB
testcase_08 AC 34 ms
53,476 KB
testcase_09 AC 34 ms
53,876 KB
testcase_10 AC 35 ms
52,368 KB
testcase_11 AC 35 ms
53,636 KB
testcase_12 AC 35 ms
53,820 KB
testcase_13 AC 96 ms
77,932 KB
testcase_14 AC 154 ms
80,132 KB
testcase_15 AC 109 ms
78,128 KB
testcase_16 AC 248 ms
85,472 KB
testcase_17 AC 440 ms
92,812 KB
testcase_18 AC 526 ms
98,348 KB
testcase_19 AC 462 ms
100,188 KB
testcase_20 AC 441 ms
98,180 KB
testcase_21 AC 480 ms
96,924 KB
testcase_22 AC 36 ms
53,288 KB
testcase_23 AC 36 ms
52,988 KB
testcase_24 AC 34 ms
52,584 KB
testcase_25 AC 305 ms
91,708 KB
testcase_26 AC 471 ms
94,872 KB
testcase_27 AC 475 ms
94,096 KB
testcase_28 AC 283 ms
93,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

class UnionFind(object):
    def __init__(self, n=1):
        self.par = [i for i in range(n)]
        self.rank = [0 for _ in range(n)]
        self.size = [1 for _ in range(n)]

    def find(self, x):
        if self.par[x] == x:
            return x
        else:
            self.par[x] = self.find(self.par[x])
            return self.par[x]

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x != y:
            if self.rank[x] < self.rank[y]:
                x, y = y, x
            if self.rank[x] == self.rank[y]:
                self.rank[x] += 1
            self.par[y] = x
            self.size[x] += self.size[y]

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

    def get_size(self, x):
        x = self.find(x)
        return self.size[x]


N, M, K = map(int, input().split())
Edge = []
ans = 0
for i in range(M):
    a, b, c = map(int, input().split())
    a, b = a - 1, b - 1
    Edge.append((c, a, b, i))
    ans += c
    
S = set()
for i in range(K):
    S.add(int(input()) - 1)
    
U = UnionFind(N)
for c, a, b, i in Edge:
    if i in S:
        U.union(a, b)
        ans -= c
        
Edge.sort()
for c, a, b, i in Edge:
    if U.is_same(a, b):
        continue
    ans -= c
    U.union(a, b)
    
print(ans)
0