結果

問題 No.748 yuki国のお財布事情
ユーザー rookzenorookzeno
提出日時 2018-11-03 12:09:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 476 ms / 2,000 ms
コード長 1,282 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 98,104 KB
最終ジャッジ日時 2024-11-20 18:35:56
合計ジャッジ時間 7,511 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,980 KB
testcase_01 AC 39 ms
53,720 KB
testcase_02 AC 39 ms
53,500 KB
testcase_03 AC 41 ms
52,936 KB
testcase_04 AC 40 ms
52,676 KB
testcase_05 AC 39 ms
52,252 KB
testcase_06 AC 38 ms
53,908 KB
testcase_07 AC 39 ms
54,112 KB
testcase_08 AC 40 ms
52,464 KB
testcase_09 AC 41 ms
54,208 KB
testcase_10 AC 39 ms
54,260 KB
testcase_11 AC 40 ms
53,840 KB
testcase_12 AC 40 ms
54,112 KB
testcase_13 AC 128 ms
78,812 KB
testcase_14 AC 189 ms
80,532 KB
testcase_15 AC 145 ms
79,348 KB
testcase_16 AC 260 ms
84,900 KB
testcase_17 AC 411 ms
95,180 KB
testcase_18 AC 453 ms
97,456 KB
testcase_19 AC 476 ms
98,104 KB
testcase_20 AC 429 ms
96,092 KB
testcase_21 AC 440 ms
96,308 KB
testcase_22 AC 40 ms
52,772 KB
testcase_23 AC 39 ms
52,736 KB
testcase_24 AC 40 ms
52,948 KB
testcase_25 AC 254 ms
94,212 KB
testcase_26 AC 412 ms
96,692 KB
testcase_27 AC 428 ms
95,672 KB
testcase_28 AC 284 ms
91,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k = map(int,input().split())
a = []
for i in range(m):
  x,y,z = map(int,input().split())
  a.append([x-1,y-1,z])
c = [int(input())for i in range(k)]
class UnionFind():
    def __init__(self,size):
        self.table = [-1 for _  in range(size)]

    def find(self,x):
        while self.table[x] >= 0:
            x = self.table[x]
        return x

    def union(self,x,y):
        s1 = self.find(x)
        s2 = self.find(y)
        if s1 != s2:
            if self.table[s1] != self.table[s2]:
                if self.table[s1] < self.table[s2]:
                    self.table[s2] = s1
                else:
                    self.table[s1] = s2
            else:
                self.table[s1] += -1
                self.table[s2] = s1
        return
gra = []
uc = 0
ans = 0
for i in range(m):
  ans += a[i][2]
hissu = []
uni = UnionFind(n)
for i in c:
  hissu.append(a[i-1])
for i in range(k):
  hen = hissu[i]
  if (uni.find(hen[0]) != uni.find(hen[1])):
    uc += 1
  ans -= hen[2]
  uni.union(hen[0],hen[1])
for i in range(m):
  gra.append(a[i])
gra = sorted(gra, key = lambda x: x[2])
for i in range(len(gra)):
  hen = gra[i]
  if (uni.find(hen[0]) != uni.find(hen[1])):
    ans -= hen[2]
    uni.union(hen[0],hen[1])
    uc += 1
  if uc == n-1:
    break
print(ans)
0