結果

問題 No.2200 Weird Shortest Path
ユーザー minatominato
提出日時 2023-03-09 06:36:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 340 ms / 2,000 ms
コード長 1,283 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,824 KB
実行使用メモリ 86,084 KB
最終ジャッジ日時 2024-09-18 02:48:29
合計ジャッジ時間 11,185 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,864 KB
testcase_01 AC 34 ms
51,968 KB
testcase_02 AC 34 ms
52,608 KB
testcase_03 AC 47 ms
62,464 KB
testcase_04 AC 65 ms
72,792 KB
testcase_05 AC 34 ms
52,480 KB
testcase_06 AC 38 ms
54,400 KB
testcase_07 AC 45 ms
61,952 KB
testcase_08 AC 67 ms
72,704 KB
testcase_09 AC 66 ms
72,320 KB
testcase_10 AC 36 ms
52,864 KB
testcase_11 AC 36 ms
52,480 KB
testcase_12 AC 33 ms
53,376 KB
testcase_13 AC 33 ms
52,536 KB
testcase_14 AC 31 ms
52,992 KB
testcase_15 AC 59 ms
72,320 KB
testcase_16 AC 33 ms
52,736 KB
testcase_17 AC 189 ms
79,900 KB
testcase_18 AC 265 ms
81,820 KB
testcase_19 AC 340 ms
85,792 KB
testcase_20 AC 306 ms
85,736 KB
testcase_21 AC 204 ms
80,416 KB
testcase_22 AC 246 ms
81,096 KB
testcase_23 AC 313 ms
85,392 KB
testcase_24 AC 173 ms
79,104 KB
testcase_25 AC 293 ms
85,544 KB
testcase_26 AC 309 ms
86,084 KB
testcase_27 AC 229 ms
80,024 KB
testcase_28 AC 274 ms
82,780 KB
testcase_29 AC 316 ms
85,564 KB
testcase_30 AC 303 ms
84,948 KB
testcase_31 AC 272 ms
81,428 KB
testcase_32 AC 337 ms
85,172 KB
testcase_33 AC 331 ms
85,168 KB
testcase_34 AC 317 ms
85,172 KB
testcase_35 AC 320 ms
85,432 KB
testcase_36 AC 321 ms
85,300 KB
testcase_37 AC 305 ms
85,172 KB
testcase_38 AC 325 ms
85,680 KB
testcase_39 AC 261 ms
81,028 KB
testcase_40 AC 188 ms
85,104 KB
testcase_41 AC 129 ms
80,240 KB
testcase_42 AC 188 ms
85,532 KB
testcase_43 AC 262 ms
85,548 KB
testcase_44 AC 266 ms
85,160 KB
testcase_45 AC 265 ms
85,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n):
        self.n = n
        self.parent_or_size = [-1] * n

    def merge(self, a, b):
        x = self.root(a)
        y = self.root(b)
        if x == y:
            return False
        if -self.parent_or_size[x] < -self.parent_or_size[y]:
            x, y = y, x
        self.parent_or_size[x] += self.parent_or_size[y]
        self.parent_or_size[y] = x
        return True

    def same(self, a, b):
        return self.root(a) == self.root(b)

    def root(self, a):
        if self.parent_or_size[a] < 0:
            return a
        self.parent_or_size[a] = self.root(self.parent_or_size[a])
        return self.parent_or_size[a]

    def size(self, a):
        return -self.parent_or_size[self.root(a)]


N, M = map(int, input().split())

uf = UnionFind(N)


def valtotuple(val: int):
    a = val % N
    val //= N
    b = val % N
    c = val // N
    return c, a, b


def tupletoval(tup) -> int:
    c, a, b = tup
    return c * N * N + a * N + b


es = []
for i in range(M):
    a, b, c = map(int, input().split())
    es.append(tupletoval((c, a - 1, b - 1)))

es.sort()
ans = 0
for val in es:
    c, a, b = valtotuple(val)
    if not uf.same(a, b):
        ans += c * uf.size(a) * uf.size(b)
        uf.merge(a, b)

print(ans)
0