結果

問題 No.748 yuki国のお財布事情
ユーザー 双六双六
提出日時 2020-08-04 23:24:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 487 ms / 2,000 ms
コード長 1,390 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 98,520 KB
最終ジャッジ日時 2024-09-14 23:05:27
合計ジャッジ時間 7,938 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,272 KB
testcase_01 AC 45 ms
53,760 KB
testcase_02 AC 47 ms
54,144 KB
testcase_03 AC 46 ms
54,272 KB
testcase_04 AC 44 ms
53,920 KB
testcase_05 AC 47 ms
54,016 KB
testcase_06 AC 46 ms
53,760 KB
testcase_07 AC 45 ms
54,144 KB
testcase_08 AC 47 ms
53,760 KB
testcase_09 AC 46 ms
54,400 KB
testcase_10 AC 46 ms
54,528 KB
testcase_11 AC 47 ms
54,016 KB
testcase_12 AC 47 ms
54,144 KB
testcase_13 AC 100 ms
77,824 KB
testcase_14 AC 163 ms
81,036 KB
testcase_15 AC 121 ms
78,104 KB
testcase_16 AC 230 ms
84,352 KB
testcase_17 AC 402 ms
92,544 KB
testcase_18 AC 487 ms
95,388 KB
testcase_19 AC 425 ms
95,104 KB
testcase_20 AC 367 ms
92,928 KB
testcase_21 AC 463 ms
94,660 KB
testcase_22 AC 45 ms
53,632 KB
testcase_23 AC 44 ms
54,016 KB
testcase_24 AC 44 ms
54,016 KB
testcase_25 AC 294 ms
95,104 KB
testcase_26 AC 444 ms
95,360 KB
testcase_27 AC 447 ms
98,520 KB
testcase_28 AC 226 ms
87,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

class UnionFind:
	def __init__(self, N):
		self.par = [i for i in range(N)]
		self.rank = [0] * 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 same_check(self, x, y):
		return self.find(x) == self.find(y)

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

class Kruskal:
	def __init__(self, E, N, M, UF, cost):
		self.uf = UF
		self.cost = cost
		for w, u, v, itr in E:
			if self.uf.same_check(u, v) != True:
				self.uf.union(u, v)
				self.cost += w

	def mincost(self):
		return self.cost

#処理内容
def main():
	N, M, K = getlist()
	E = []
	totalcost = 0
	for i in range(M):
		a, b, c = getlist()
		a -= 1; b -= 1
		totalcost += c
		E.append((c, a, b, i))

	UF = UnionFind(N)
	cost = 0
	for i in range(K):
		e = int(input())
		e -= 1
		c, a, b, itr = E[e]
		UF.union(a, b)
		cost += c

	E.sort(key = lambda x:x[0])
	K = Kruskal(E, N, M, UF, cost)

	finalcost = K.mincost()
	print(totalcost - finalcost)

if __name__ == '__main__':
	main()
0