結果

問題 No.748 yuki国のお財布事情
ユーザー titiatitia
提出日時 2018-10-20 07:03:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,184 ms / 2,000 ms
コード長 1,259 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 58,976 KB
最終ジャッジ日時 2024-11-19 01:54:36
合計ジャッジ時間 12,062 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 29 ms
10,880 KB
testcase_07 AC 30 ms
10,880 KB
testcase_08 AC 30 ms
10,880 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 30 ms
10,880 KB
testcase_12 AC 30 ms
10,880 KB
testcase_13 AC 107 ms
14,208 KB
testcase_14 AC 195 ms
16,768 KB
testcase_15 AC 122 ms
14,720 KB
testcase_16 AC 355 ms
22,272 KB
testcase_17 AC 907 ms
49,728 KB
testcase_18 AC 985 ms
43,908 KB
testcase_19 AC 1,135 ms
43,576 KB
testcase_20 AC 965 ms
39,408 KB
testcase_21 AC 1,098 ms
49,840 KB
testcase_22 AC 30 ms
10,880 KB
testcase_23 AC 31 ms
10,880 KB
testcase_24 AC 30 ms
10,880 KB
testcase_25 AC 818 ms
50,252 KB
testcase_26 AC 1,163 ms
58,116 KB
testcase_27 AC 1,184 ms
58,976 KB
testcase_28 AC 697 ms
31,488 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