結果

問題 No.2200 Weird Shortest Path
ユーザー ああいいああいい
提出日時 2023-01-29 16:17:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 857 ms / 2,000 ms
コード長 818 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 91,680 KB
最終ジャッジ日時 2024-06-29 13:10:10
合計ジャッジ時間 23,140 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 44 ms
52,736 KB
testcase_03 AC 60 ms
62,080 KB
testcase_04 AC 93 ms
76,160 KB
testcase_05 AC 40 ms
51,968 KB
testcase_06 AC 45 ms
54,272 KB
testcase_07 AC 55 ms
60,800 KB
testcase_08 AC 82 ms
73,216 KB
testcase_09 AC 81 ms
72,576 KB
testcase_10 AC 41 ms
52,480 KB
testcase_11 AC 40 ms
52,608 KB
testcase_12 AC 43 ms
53,120 KB
testcase_13 AC 41 ms
52,096 KB
testcase_14 AC 41 ms
52,480 KB
testcase_15 AC 80 ms
72,448 KB
testcase_16 AC 42 ms
52,352 KB
testcase_17 AC 347 ms
80,896 KB
testcase_18 AC 517 ms
85,376 KB
testcase_19 AC 814 ms
90,260 KB
testcase_20 AC 773 ms
90,260 KB
testcase_21 AC 368 ms
81,500 KB
testcase_22 AC 481 ms
83,584 KB
testcase_23 AC 825 ms
90,780 KB
testcase_24 AC 250 ms
79,232 KB
testcase_25 AC 788 ms
90,520 KB
testcase_26 AC 819 ms
90,660 KB
testcase_27 AC 377 ms
81,920 KB
testcase_28 AC 644 ms
86,912 KB
testcase_29 AC 826 ms
90,268 KB
testcase_30 AC 816 ms
90,912 KB
testcase_31 AC 547 ms
85,376 KB
testcase_32 AC 832 ms
91,164 KB
testcase_33 AC 839 ms
90,652 KB
testcase_34 AC 857 ms
90,656 KB
testcase_35 AC 833 ms
91,292 KB
testcase_36 AC 826 ms
90,656 KB
testcase_37 AC 836 ms
90,780 KB
testcase_38 AC 838 ms
91,680 KB
testcase_39 AC 501 ms
84,096 KB
testcase_40 AC 489 ms
89,984 KB
testcase_41 AC 378 ms
82,432 KB
testcase_42 AC 491 ms
89,856 KB
testcase_43 AC 804 ms
90,524 KB
testcase_44 AC 810 ms
90,392 KB
testcase_45 AC 824 ms
90,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 8)


N,M = map(int,input().split())
edge = []
C = 20
mask = 1 << C
for _ in range(M):
    a,b,w = map(int,input().split())
    edge.append((w,(a << C) + b))
edge.sort()

ans = 0
parent = [-1] * N
def find(i):
    if parent[i] < 0:return i
    parent[i] = find(parent[i])
    return parent[i]
def unite(i,j):
    I = find(i)
    J = find(j)
    if I == J:return False
    if parent[I] < parent[J]:
        I,J = J,I
    parent[J] += parent[I]
    parent[I] = J
    return True
def isSame(i,j):
    return find(i) == find(j)
for w,k in edge:
    a = k // mask
    b = k % mask
    #print(w,a,b)
    a -= 1
    b -= 1
    A = find(a)
    B = find(b)
    if A == B:continue
    na = -parent[A]
    nb = -parent[B]
    ans += w * na * nb
    unite(a,b)
    #print(na,nb,w)
print(ans)
0