結果

問題 No.748 yuki国のお財布事情
ユーザー titiatitia
提出日時 2019-04-20 06:08:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 627 ms / 2,000 ms
コード長 1,258 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 111,440 KB
最終ジャッジ日時 2024-09-25 01:39:24
合計ジャッジ時間 7,766 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,560 KB
testcase_01 AC 38 ms
54,448 KB
testcase_02 AC 41 ms
54,816 KB
testcase_03 AC 43 ms
54,604 KB
testcase_04 AC 42 ms
54,532 KB
testcase_05 AC 39 ms
54,748 KB
testcase_06 AC 39 ms
54,688 KB
testcase_07 AC 41 ms
54,664 KB
testcase_08 AC 40 ms
55,732 KB
testcase_09 AC 41 ms
54,680 KB
testcase_10 AC 41 ms
55,740 KB
testcase_11 AC 42 ms
55,636 KB
testcase_12 AC 40 ms
55,420 KB
testcase_13 AC 149 ms
79,636 KB
testcase_14 AC 212 ms
82,212 KB
testcase_15 AC 148 ms
79,912 KB
testcase_16 AC 259 ms
84,344 KB
testcase_17 AC 555 ms
110,448 KB
testcase_18 AC 523 ms
99,424 KB
testcase_19 AC 458 ms
96,092 KB
testcase_20 AC 403 ms
93,020 KB
testcase_21 AC 627 ms
105,144 KB
testcase_22 AC 40 ms
54,104 KB
testcase_23 AC 39 ms
54,652 KB
testcase_24 AC 40 ms
54,796 KB
testcase_25 AC 380 ms
107,996 KB
testcase_26 AC 593 ms
111,064 KB
testcase_27 AC 556 ms
111,440 KB
testcase_28 AC 254 ms
86,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K=map(int,input().split())
ROAD=[list(map(int,input().split())) for i in range(M)]
exc=[int(input()) for i in range(K)]

S=[0 for i in range(M+1)]
for e in exc:
    S[e]=1

SAMELIST=[i for i in range(N+1)]
def find(a):
    while SAMELIST[a]!=a:
        a=SAMELIST[a]
    return a

def Union(x,y):
    if find(x)!=find(y):
        SAMELIST[find(x)]=min(find(y),find(x))
        SAMELIST[find(y)]=min(find(y),find(x))
        SAMELIST[x]=min(find(y),find(x))
        SAMELIST[y]=min(find(y),find(x))

for e in exc:
    Union(ROAD[e-1][0],ROAD[e-1][1])

from collections import defaultdict
EDGE=defaultdict(int)

ANS=0
for i in range(M):
    a,b,c=ROAD[i]
    if a>b:
        a,b=b,a
    if find(a)==find(b) and S[i+1]!=1:
        ANS+=c
        continue
    elif find(a)==find(b):
        continue
    
    elif EDGE[find(a),find(b)]!=0:
        if EDGE[find(a),find(b)]>c:
            ANS+=EDGE[find(a),find(b)]
            EDGE[find(a),find(b)]=c
        else:
            ANS+=c
    else:
        EDGE[find(a),find(b)]=c

EDGE=sorted(list(EDGE.items()),key=lambda x:x[1])

from collections import deque
QUE=deque(EDGE)

while QUE:
    (a,b),cost=QUE.popleft()
    if find(a)==find(b):
        ANS+=cost
    else:
        Union(a,b)

print(ANS)
    
    
0