結果

問題 No.748 yuki国のお財布事情
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-20 11:26:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,147 ms / 2,000 ms
コード長 1,407 bytes
コンパイル時間 429 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 45,056 KB
最終ジャッジ日時 2024-05-02 20:20:03
合計ジャッジ時間 11,749 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,880 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 31 ms
11,008 KB
testcase_05 AC 32 ms
10,880 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 30 ms
10,880 KB
testcase_08 AC 31 ms
10,880 KB
testcase_09 AC 31 ms
10,880 KB
testcase_10 AC 31 ms
10,880 KB
testcase_11 AC 31 ms
11,008 KB
testcase_12 AC 31 ms
10,880 KB
testcase_13 AC 131 ms
15,616 KB
testcase_14 AC 202 ms
18,048 KB
testcase_15 AC 151 ms
16,256 KB
testcase_16 AC 350 ms
24,664 KB
testcase_17 AC 851 ms
42,240 KB
testcase_18 AC 898 ms
42,924 KB
testcase_19 AC 863 ms
42,864 KB
testcase_20 AC 760 ms
40,276 KB
testcase_21 AC 887 ms
42,708 KB
testcase_22 AC 31 ms
10,880 KB
testcase_23 AC 30 ms
11,008 KB
testcase_24 AC 31 ms
10,752 KB
testcase_25 AC 873 ms
40,388 KB
testcase_26 AC 1,147 ms
44,928 KB
testcase_27 AC 1,007 ms
45,056 KB
testcase_28 AC 562 ms
30,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n):
        self.n=n
        self.parent_size=[-1]*n
    def merge(self, a, b):
        x, y=self.leader(a), self.leader(b)
        if x == y: return 
        if abs(self.parent_size[x])<abs(self.parent_size[y]): x, y=y, x
        self.parent_size[x] += self.parent_size[y] 
        self.parent_size[y]=x
        return 
    def same(self, a, b):
        return self.leader(a) == self.leader(b)
    def leader(self, a):
        if self.parent_size[a]<0: return a
        self.parent_size[a]=self.leader(self.parent_size[a])
        return self.parent_size[a]
    def size(self, a):
        return abs(self.parent_size[self.leader(a)])
    def groups(self):
        result=[[] for _ in range(self.n)]
        for i in range(self.n):
            result[self.leader(i)].append(i)
        return [r for r in result if r != []]

n,m,k=map(int,input().split())
uni=UnionFind(n)
total=0
path=[]
for i in range(m):
    a,b,c=map(int,input().split())
    a-=1;b-=1
    path.append([c,a,b,i+1])
    total+=c
hozon=set()
for _ in range(k):
    e=int(input())
    hozon.add(e)
path2=[]
minmum_cost=0
for cost,a,b,ind in path:
    if ind in hozon:
        uni.merge(a,b)
        minmum_cost+=cost
    else:
        path2.append([cost,a,b])
path2.sort()
for cost,a,b in path2:
    if uni.same(a,b):
        continue
    minmum_cost+=cost
    uni.merge(a,b)
print(total-minmum_cost)
0