結果

問題 No.1344 Typical Shortest Path Sum
ユーザー nasubi24nasubi24
提出日時 2021-01-16 14:52:34
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 928 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 403,624 KB
最終ジャッジ日時 2024-11-27 17:08:08
合計ジャッジ時間 18,480 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
62,308 KB
testcase_01 AC 43 ms
390,696 KB
testcase_02 AC 42 ms
59,420 KB
testcase_03 AC 44 ms
327,208 KB
testcase_04 AC 44 ms
62,040 KB
testcase_05 AC 43 ms
387,936 KB
testcase_06 AC 42 ms
60,928 KB
testcase_07 AC 43 ms
54,008 KB
testcase_08 AC 43 ms
54,740 KB
testcase_09 AC 41 ms
55,112 KB
testcase_10 AC 43 ms
55,116 KB
testcase_11 AC 42 ms
54,300 KB
testcase_12 AC 43 ms
55,808 KB
testcase_13 AC 42 ms
54,740 KB
testcase_14 AC 42 ms
54,400 KB
testcase_15 AC 42 ms
54,140 KB
testcase_16 AC 51 ms
62,716 KB
testcase_17 AC 41 ms
54,268 KB
testcase_18 AC 42 ms
55,252 KB
testcase_19 AC 42 ms
54,668 KB
testcase_20 AC 43 ms
54,928 KB
testcase_21 AC 42 ms
53,948 KB
testcase_22 AC 43 ms
55,284 KB
testcase_23 AC 42 ms
54,168 KB
testcase_24 AC 43 ms
54,672 KB
testcase_25 AC 43 ms
54,464 KB
testcase_26 AC 42 ms
54,604 KB
testcase_27 AC 41 ms
54,240 KB
testcase_28 AC 43 ms
54,300 KB
testcase_29 AC 42 ms
53,996 KB
testcase_30 AC 42 ms
54,104 KB
testcase_31 AC 42 ms
54,320 KB
testcase_32 AC 44 ms
55,220 KB
testcase_33 AC 42 ms
55,048 KB
testcase_34 AC 43 ms
54,684 KB
testcase_35 AC 43 ms
54,700 KB
testcase_36 AC 44 ms
54,168 KB
testcase_37 AC 43 ms
54,172 KB
testcase_38 AC 43 ms
54,504 KB
testcase_39 AC 44 ms
54,516 KB
testcase_40 AC 54 ms
63,124 KB
testcase_41 AC 55 ms
63,940 KB
testcase_42 AC 53 ms
63,444 KB
testcase_43 AC 53 ms
63,772 KB
testcase_44 AC 52 ms
62,928 KB
testcase_45 AC 54 ms
63,004 KB
testcase_46 AC 54 ms
63,780 KB
testcase_47 AC 54 ms
63,364 KB
testcase_48 AC 56 ms
64,424 KB
testcase_49 AC 54 ms
63,148 KB
testcase_50 AC 52 ms
63,376 KB
testcase_51 AC 53 ms
63,556 KB
testcase_52 AC 52 ms
63,968 KB
testcase_53 AC 64 ms
67,648 KB
testcase_54 AC 54 ms
64,100 KB
testcase_55 AC 53 ms
63,504 KB
testcase_56 AC 56 ms
63,864 KB
testcase_57 AC 54 ms
62,744 KB
testcase_58 AC 55 ms
64,648 KB
testcase_59 AC 53 ms
63,044 KB
testcase_60 AC 67 ms
70,704 KB
testcase_61 AC 43 ms
55,024 KB
testcase_62 TLE -
testcase_63 AC 148 ms
76,308 KB
testcase_64 AC 299 ms
78,848 KB
testcase_65 TLE -
testcase_66 TLE -
testcase_67 TLE -
testcase_68 AC 95 ms
75,996 KB
testcase_69 AC 106 ms
76,436 KB
testcase_70 AC 43 ms
54,908 KB
testcase_71 AC 42 ms
54,744 KB
testcase_72 AC 42 ms
55,928 KB
testcase_73 AC 42 ms
53,872 KB
testcase_74 AC 42 ms
54,588 KB
testcase_75 AC 42 ms
54,264 KB
testcase_76 AC 42 ms
54,244 KB
testcase_77 AC 41 ms
54,060 KB
testcase_78 AC 42 ms
54,928 KB
testcase_79 AC 49 ms
403,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n,m=map(int,input().split())
num=[[[] for _ in range(n)] for z in range(n)]
for i in range(m):
    s,t,d=map(int,input().split())
    num[s-1][t-1].append(d)
num2=[[] for _ in range(n)]
for i in range(n):
    for j in range(n):
        if len(num[i][j])!=0:
            num2[i].append([j,min(num[i][j])])
for i in range(n):
    queue=deque()
    ans=[10**18]*n
    ans[i]=0
    queue.append(i)
    while len(queue)!=0:
        num1=queue.popleft()
        num3=ans[num1]
        num4=num2[num1]
        for j in range(len(num4)):
            if ans[num4[j][0]]==10**18:
                ans[num4[j][0]]=num3+num4[j][1]
                queue.append(num4[j][0])
            if ans[num4[j][0]]>num3+num4[j][1]:
                ans[num4[j][0]]=num3+num4[j][1]
                queue.append(num4[j][0])
    ans2=0
    for j in range(n):
        if ans[j]!=10**18:
            ans2+=ans[j]
    print(ans2)
0