結果

問題 No.748 yuki国のお財布事情
ユーザー shinichishinichi
提出日時 2023-01-29 02:35:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 516 ms / 2,000 ms
コード長 1,078 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 115,980 KB
最終ジャッジ日時 2024-06-29 02:38:24
合計ジャッジ時間 7,597 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,016 KB
testcase_01 AC 33 ms
53,368 KB
testcase_02 AC 37 ms
53,088 KB
testcase_03 AC 38 ms
52,940 KB
testcase_04 AC 34 ms
53,252 KB
testcase_05 AC 37 ms
53,668 KB
testcase_06 AC 37 ms
53,764 KB
testcase_07 AC 36 ms
53,444 KB
testcase_08 AC 38 ms
54,372 KB
testcase_09 AC 37 ms
52,872 KB
testcase_10 AC 38 ms
54,480 KB
testcase_11 AC 38 ms
53,356 KB
testcase_12 AC 37 ms
53,268 KB
testcase_13 AC 127 ms
80,072 KB
testcase_14 AC 191 ms
83,004 KB
testcase_15 AC 127 ms
80,832 KB
testcase_16 AC 265 ms
90,492 KB
testcase_17 AC 427 ms
103,184 KB
testcase_18 AC 516 ms
109,464 KB
testcase_19 AC 496 ms
115,980 KB
testcase_20 AC 425 ms
114,004 KB
testcase_21 AC 489 ms
111,868 KB
testcase_22 AC 35 ms
53,404 KB
testcase_23 AC 36 ms
53,640 KB
testcase_24 AC 37 ms
53,012 KB
testcase_25 AC 278 ms
100,528 KB
testcase_26 AC 464 ms
112,356 KB
testcase_27 AC 451 ms
110,252 KB
testcase_28 AC 303 ms
105,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq


class UnionFind:
    def __init__(self, size):
        self.parent = [-1] * size

    def union(self, x, y):
        x, y = self.root(x), self.root(y)
        if x == y:
            return False
        if self.parent[x] > self.parent[y]:
            x, y = y, x
        self.parent[x] += self.parent[y]
        self.parent[y] = x
        return True

    def root(self, x):
        if self.parent[x] < 0:
            return x
        self.parent[x] = self.root(self.parent[x])
        return self.parent[x]


N, M, K = map(int, input().split())
graph = [[] for _ in range(N)]
edges = []
uf = UnionFind(N)

for i in range(M):
    u, v, w = map(int, input().split())
    u -= 1
    v -= 1
    graph[u].append((v, w))
    graph[v].append((u, w))
    edges.append((u, v, w, i))

used = set()
for _ in range(K):
    e = int(input()) - 1
    u, v, w, _ = edges[e]
    uf.union(u, v)
    used.add(e)

edges.sort(key=lambda x: x[2])
erased = 0
for u, v, w, i in edges:
    if i in used:
        continue
    if not uf.union(u, v):
        erased += w

print(erased)




0