結果
| 問題 |
No.748 yuki国のお財布事情
|
| コンテスト | |
| ユーザー |
tktk_snsn
|
| 提出日時 | 2021-01-05 23:35:34 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 573 ms / 2,000 ms |
| コード長 | 1,312 bytes |
| コンパイル時間 | 171 ms |
| コンパイル使用メモリ | 82,172 KB |
| 実行使用メモリ | 94,964 KB |
| 最終ジャッジ日時 | 2024-11-06 08:38:02 |
| 合計ジャッジ時間 | 7,974 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 26 |
ソースコード
import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)
class UF_tree:
def __init__(self, n):
self.root = [-1] * (n + 1)
self.rank = [0] * (n + 1)
def find(self, x):
if self.root[x] < 0:
return x
self.root[x] = self.find(self.root[x])
return self.root[x]
def isSame(self, x, y):
return self.find(x) == self.find(y)
def unite(self, x, y):
x = self.find(x)
y = self.find(y)
if x == y:
return False
if self.rank[x] < self.rank[y]:
self.root[y] += self.root[x]
self.root[x] = y
else:
self.root[x] += self.root[y]
self.root[y] = x
if self.rank[x] == self.rank[y]:
self.rank[x] += 1
return True
def size(self, x):
return -self.root[self.find(x)]
N, M, K = map(int, input().split())
uf = UF_tree(N)
edge = [-1] * M
for i in range(M):
a, b, c = map(int, input().split())
edge[i] = (c, a-1, b-1, i)
used = [0] * M
for _ in range(K):
x = int(input()) - 1
_, a, b, _ = edge[x]
uf.unite(a, b)
used[x] = 1
edge.sort()
ans = 0
for c, a, b, i in edge:
if used[i]:
continue
if uf.unite(a, b):
continue
ans += c
print(ans)
tktk_snsn