結果

問題 No.2200 Weird Shortest Path
ユーザー roarisroaris
提出日時 2023-01-30 01:25:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 550 ms / 2,000 ms
コード長 1,272 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 106,624 KB
最終ジャッジ日時 2024-06-29 19:52:31
合計ジャッジ時間 15,728 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,352 KB
testcase_01 AC 34 ms
52,480 KB
testcase_02 AC 35 ms
51,968 KB
testcase_03 AC 42 ms
60,928 KB
testcase_04 AC 52 ms
69,888 KB
testcase_05 AC 35 ms
51,712 KB
testcase_06 AC 38 ms
57,984 KB
testcase_07 AC 42 ms
59,904 KB
testcase_08 AC 51 ms
67,584 KB
testcase_09 AC 51 ms
66,176 KB
testcase_10 AC 35 ms
52,096 KB
testcase_11 AC 35 ms
52,352 KB
testcase_12 AC 35 ms
52,608 KB
testcase_13 AC 35 ms
52,608 KB
testcase_14 AC 36 ms
52,224 KB
testcase_15 AC 51 ms
65,920 KB
testcase_16 AC 36 ms
52,736 KB
testcase_17 AC 228 ms
84,992 KB
testcase_18 AC 314 ms
90,700 KB
testcase_19 AC 496 ms
100,992 KB
testcase_20 AC 475 ms
99,708 KB
testcase_21 AC 231 ms
86,584 KB
testcase_22 AC 295 ms
89,728 KB
testcase_23 AC 502 ms
101,376 KB
testcase_24 AC 159 ms
81,596 KB
testcase_25 AC 509 ms
106,112 KB
testcase_26 AC 522 ms
100,612 KB
testcase_27 AC 238 ms
85,392 KB
testcase_28 AC 404 ms
94,992 KB
testcase_29 AC 520 ms
100,524 KB
testcase_30 AC 515 ms
100,312 KB
testcase_31 AC 336 ms
91,672 KB
testcase_32 AC 521 ms
101,420 KB
testcase_33 AC 525 ms
101,120 KB
testcase_34 AC 538 ms
101,888 KB
testcase_35 AC 542 ms
101,888 KB
testcase_36 AC 550 ms
101,156 KB
testcase_37 AC 542 ms
101,208 KB
testcase_38 AC 538 ms
102,144 KB
testcase_39 AC 279 ms
89,736 KB
testcase_40 AC 271 ms
105,216 KB
testcase_41 AC 249 ms
89,160 KB
testcase_42 AC 279 ms
106,624 KB
testcase_43 AC 290 ms
100,656 KB
testcase_44 AC 296 ms
100,608 KB
testcase_45 AC 288 ms
100,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

class Unionfind:
    def __init__(self, n):
        self.par = [-1]*n
        self.rank = [1]*n
    
    def root(self, x):
        r = x
        
        while not self.par[r]<0:
            r = self.par[r]
        
        t = x
        
        while t!=r:
            tmp = t
            t = self.par[t]
            self.par[tmp] = r
        
        return r
    
    def unite(self, x, y):
        rx = self.root(x)
        ry = self.root(y)
        
        if rx==ry:
            return
        
        if self.rank[rx]<=self.rank[ry]:
            self.par[ry] += self.par[rx]
            self.par[rx] = ry
            
            if self.rank[rx]==self.rank[ry]:
                self.rank[ry] += 1
        else:
            self.par[rx] += self.par[ry]
            self.par[ry] = rx
    
    def is_same(self, x, y):
        return self.root(x)==self.root(y)
    
    def count(self, x):
        return -self.par[self.root(x)]
    
N, M = map(int, input().split())
edges = [tuple(map(int, input().split())) for _ in range(M)]
edges.sort(key=lambda t: t[2])
ans = 0
uf = Unionfind(N)

for u, v, w in edges:
    if not uf.is_same(u-1, v-1):
        ans += uf.count(u-1)*uf.count(v-1)*w
        uf.unite(u-1, v-1)

print(ans)
0