結果

問題 No.748 yuki国のお財布事情
ユーザー compass19compass19
提出日時 2018-10-20 00:23:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 818 ms / 2,000 ms
コード長 989 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 48,548 KB
最終ジャッジ日時 2024-11-18 23:25:41
合計ジャッジ時間 9,228 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 30 ms
10,880 KB
testcase_08 AC 30 ms
10,880 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 31 ms
10,880 KB
testcase_12 AC 31 ms
10,880 KB
testcase_13 AC 114 ms
14,464 KB
testcase_14 AC 187 ms
19,000 KB
testcase_15 AC 129 ms
15,872 KB
testcase_16 AC 326 ms
25,304 KB
testcase_17 AC 628 ms
39,400 KB
testcase_18 AC 750 ms
43,140 KB
testcase_19 AC 818 ms
48,548 KB
testcase_20 AC 730 ms
45,572 KB
testcase_21 AC 738 ms
43,416 KB
testcase_22 AC 30 ms
10,752 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 31 ms
11,008 KB
testcase_25 AC 601 ms
34,824 KB
testcase_26 AC 720 ms
44,188 KB
testcase_27 AC 708 ms
43,236 KB
testcase_28 AC 552 ms
33,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, K = map(int, input().split())
Root = [n for n in range(N)]
Root_num = [1 for n in range(N)]
edges = [None for _ in range(M)]
for m in range(M):
	a, b, c = map(int, input().split())
	edges[m] = (a-1, b-1, c)
abs_edges = set(int(input())-1 for _ in range(K))
sorted_edges = sorted([e for e in set(range(M)) - abs_edges], key=lambda x: edges[x][2])

# 最小木
T = {edges[e] for e in abs_edges}

del_weight = 0
def get_Root(c):
	if Root[c] == c:
		return c
	else:
		return get_Root(Root[c])

def merge(a, b):
	root_a = get_Root(a)
	root_b = get_Root(b)
	if Root_num[root_a] < Root_num[root_b]:
		Root[root_a] = Root[root_b]
		Root_num[root_b] += Root_num[root_a]
	else:
		Root[root_b] = Root[root_a]
		Root_num[root_a] += Root_num[root_b]		

# union tree
for e in abs_edges:
	a, b, c = edges[e]
	merge(a, b)


for e in sorted_edges:
	# edge eを追加できるかどうか
	a, b, c = edges[e]
	if get_Root(a) == get_Root(b):
		del_weight += c
		continue
	merge(a, b)

print(del_weight)
0