結果

問題 No.2200 Weird Shortest Path
ユーザー ntudantuda
提出日時 2023-02-04 20:35:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 729 ms / 2,000 ms
コード長 619 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 106,976 KB
最終ジャッジ日時 2024-07-03 17:03:24
合計ジャッジ時間 20,294 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,436 KB
testcase_01 AC 37 ms
52,620 KB
testcase_02 AC 36 ms
53,232 KB
testcase_03 AC 50 ms
63,152 KB
testcase_04 AC 66 ms
71,320 KB
testcase_05 AC 37 ms
51,968 KB
testcase_06 AC 42 ms
54,144 KB
testcase_07 AC 50 ms
60,672 KB
testcase_08 AC 67 ms
70,400 KB
testcase_09 AC 61 ms
70,548 KB
testcase_10 AC 39 ms
53,120 KB
testcase_11 AC 39 ms
52,608 KB
testcase_12 AC 39 ms
52,864 KB
testcase_13 AC 38 ms
52,736 KB
testcase_14 AC 39 ms
52,864 KB
testcase_15 AC 67 ms
71,440 KB
testcase_16 AC 36 ms
53,416 KB
testcase_17 AC 314 ms
85,088 KB
testcase_18 AC 466 ms
90,716 KB
testcase_19 AC 637 ms
100,212 KB
testcase_20 AC 670 ms
99,188 KB
testcase_21 AC 361 ms
86,484 KB
testcase_22 AC 433 ms
89,636 KB
testcase_23 AC 729 ms
100,492 KB
testcase_24 AC 255 ms
81,716 KB
testcase_25 AC 692 ms
106,976 KB
testcase_26 AC 662 ms
100,212 KB
testcase_27 AC 349 ms
85,752 KB
testcase_28 AC 570 ms
94,656 KB
testcase_29 AC 672 ms
100,216 KB
testcase_30 AC 655 ms
100,772 KB
testcase_31 AC 468 ms
91,356 KB
testcase_32 AC 704 ms
100,476 KB
testcase_33 AC 685 ms
100,756 KB
testcase_34 AC 698 ms
100,488 KB
testcase_35 AC 698 ms
101,356 KB
testcase_36 AC 688 ms
100,980 KB
testcase_37 AC 686 ms
100,612 KB
testcase_38 AC 681 ms
101,040 KB
testcase_39 AC 345 ms
90,156 KB
testcase_40 AC 313 ms
103,424 KB
testcase_41 AC 263 ms
88,088 KB
testcase_42 AC 295 ms
104,832 KB
testcase_43 AC 456 ms
101,080 KB
testcase_44 AC 462 ms
100,540 KB
testcase_45 AC 445 ms
100,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
ABW = [list(map(int, input().split())) for _ in range(M)]

def root(x):
    if P[x] < 0: return x
    P[x] = root(P[x])  # 経路圧縮
    return P[x]

def unite(x, y):
    x = root(x)
    y = root(y)
    if x == y: return
    if x > y: x, y = y, x
    P[x] += P[y]
    P[y] = x

def same(x, y):
    return root(x) == root(y)

def size(x):
    x = root(x)
    return -P[x]

P = [-1] * (N + 1)
ABW.sort(key=lambda x: x[2])
ans = 0
for a, b, w in ABW:
    if not same(a, b):
        ans += w * size(a) * size(b)
        unite(a, b)
    if size(1) == N:
        print(ans)
        exit()
0