結果

問題 No.2200 Weird Shortest Path
ユーザー hiryuNhiryuN
提出日時 2023-01-29 16:43:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 884 ms / 2,000 ms
コード長 575 bytes
コンパイル時間 660 ms
コンパイル使用メモリ 82,656 KB
実行使用メモリ 113,280 KB
最終ジャッジ日時 2024-06-29 13:23:33
合計ジャッジ時間 23,912 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,448 KB
testcase_01 AC 32 ms
52,212 KB
testcase_02 AC 33 ms
52,400 KB
testcase_03 AC 51 ms
64,504 KB
testcase_04 AC 82 ms
76,684 KB
testcase_05 AC 35 ms
52,820 KB
testcase_06 AC 40 ms
54,148 KB
testcase_07 AC 48 ms
63,080 KB
testcase_08 AC 79 ms
76,616 KB
testcase_09 AC 75 ms
74,764 KB
testcase_10 AC 37 ms
53,424 KB
testcase_11 AC 36 ms
53,992 KB
testcase_12 AC 36 ms
53,096 KB
testcase_13 AC 35 ms
52,340 KB
testcase_14 AC 33 ms
53,352 KB
testcase_15 AC 71 ms
75,224 KB
testcase_16 AC 36 ms
53,132 KB
testcase_17 AC 304 ms
86,756 KB
testcase_18 AC 480 ms
96,660 KB
testcase_19 AC 846 ms
107,092 KB
testcase_20 AC 799 ms
109,740 KB
testcase_21 AC 314 ms
90,012 KB
testcase_22 AC 431 ms
92,836 KB
testcase_23 AC 832 ms
109,948 KB
testcase_24 AC 193 ms
82,260 KB
testcase_25 AC 790 ms
107,876 KB
testcase_26 AC 864 ms
108,968 KB
testcase_27 AC 309 ms
88,812 KB
testcase_28 AC 615 ms
100,776 KB
testcase_29 AC 830 ms
110,072 KB
testcase_30 AC 821 ms
108,556 KB
testcase_31 AC 508 ms
96,284 KB
testcase_32 AC 838 ms
112,508 KB
testcase_33 AC 862 ms
112,760 KB
testcase_34 AC 882 ms
112,516 KB
testcase_35 AC 879 ms
113,280 KB
testcase_36 AC 863 ms
112,512 KB
testcase_37 AC 856 ms
112,384 KB
testcase_38 AC 863 ms
113,064 KB
testcase_39 AC 431 ms
95,904 KB
testcase_40 AC 563 ms
110,948 KB
testcase_41 AC 398 ms
94,496 KB
testcase_42 AC 549 ms
111,088 KB
testcase_43 AC 882 ms
112,180 KB
testcase_44 AC 884 ms
112,024 KB
testcase_45 AC 880 ms
112,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(a):
    b=a
    a=A[a]
    while type(a)!=int:
        b=int(a)
        a=A[int(a)]
    return [a,b]
n,m=map(int,input().split())
D=[]
A=[None]+[1]*n
for i in range(1,m+1):
    a,b,w=map(int,input().split())
    D.append([w,a,b])
D.sort()
D=[None]+D
ans=0
for i in range(1,m+1):
    q=f(D[i][1])
    w=f(D[i][2])
    if q[1]==w[1]:
        div=0
    else:
        div=q[0]*w[0]
        if A[q[1]]>A[w[1]]:
            A[q[1]]+=A[w[1]]
            A[w[1]]=str(q[1])
        else:
            A[w[1]]+=A[q[1]]
            A[q[1]]=str(w[1])
    ans+=D[i][0]*div
print(ans)
0