結果

問題 No.2200 Weird Shortest Path
ユーザー titiatitia
提出日時 2023-01-29 00:22:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,509 ms / 2,000 ms
コード長 803 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 64,728 KB
最終ジャッジ日時 2024-06-29 01:10:33
合計ジャッジ時間 35,786 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 33 ms
10,624 KB
testcase_04 AC 42 ms
10,880 KB
testcase_05 AC 30 ms
10,496 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 32 ms
10,624 KB
testcase_08 AC 38 ms
10,752 KB
testcase_09 AC 35 ms
10,752 KB
testcase_10 AC 30 ms
10,496 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 30 ms
10,496 KB
testcase_13 AC 29 ms
10,496 KB
testcase_14 AC 31 ms
10,624 KB
testcase_15 AC 36 ms
10,880 KB
testcase_16 AC 30 ms
10,496 KB
testcase_17 AC 434 ms
27,452 KB
testcase_18 AC 814 ms
41,156 KB
testcase_19 AC 1,280 ms
60,708 KB
testcase_20 AC 1,313 ms
59,772 KB
testcase_21 AC 563 ms
31,308 KB
testcase_22 AC 694 ms
37,640 KB
testcase_23 AC 1,365 ms
62,812 KB
testcase_24 AC 239 ms
19,712 KB
testcase_25 AC 1,267 ms
60,176 KB
testcase_26 AC 1,343 ms
61,972 KB
testcase_27 AC 512 ms
29,780 KB
testcase_28 AC 1,001 ms
49,384 KB
testcase_29 AC 1,399 ms
62,604 KB
testcase_30 AC 1,324 ms
61,888 KB
testcase_31 AC 834 ms
42,696 KB
testcase_32 AC 1,480 ms
64,076 KB
testcase_33 AC 1,466 ms
63,948 KB
testcase_34 AC 1,474 ms
64,080 KB
testcase_35 AC 1,509 ms
64,656 KB
testcase_36 AC 1,478 ms
64,080 KB
testcase_37 AC 1,467 ms
64,072 KB
testcase_38 AC 1,469 ms
64,728 KB
testcase_39 AC 791 ms
39,676 KB
testcase_40 AC 1,165 ms
57,080 KB
testcase_41 AC 737 ms
36,680 KB
testcase_42 AC 1,126 ms
53,824 KB
testcase_43 AC 1,296 ms
62,464 KB
testcase_44 AC 1,301 ms
62,464 KB
testcase_45 AC 1,297 ms
62,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# UnionFind

n,m=map(int,input().split())

Group = [i for i in range(n+1)] # グループ分け
Nodes = [1]*(n+1) # 各グループのノードの数

def find(x):
    while Group[x] != x:
        x=Group[x]
    return x

def Union(x,y):
    if find(x) != find(y):
        if Nodes[find(x)] < Nodes[find(y)]:
            
            Nodes[find(y)] += Nodes[find(x)]
            Nodes[find(x)] = 0
            Group[find(x)] = find(y)
            
        else:
            Nodes[find(x)] += Nodes[find(y)]
            Nodes[find(y)] = 0
            Group[find(y)] = find(x)

X=[list(map(int,input().split())) for i in range(m)]
X.sort(key=lambda x:x[2])

ANS=0
for a,b,w in X:
    if find(a)!=find(b):
        x=Nodes[find(a)]
        y=Nodes[find(b)]

        ANS+=w*x*y
        Union(a,b)

print(ANS)
0