結果

問題 No.1344 Typical Shortest Path Sum
ユーザー nasubi24nasubi24
提出日時 2021-01-16 14:59:15
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 996 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 391,984 KB
最終ジャッジ日時 2024-11-27 17:18:51
合計ジャッジ時間 18,251 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
59,136 KB
testcase_01 AC 44 ms
385,088 KB
testcase_02 AC 43 ms
58,880 KB
testcase_03 AC 42 ms
314,484 KB
testcase_04 AC 41 ms
59,264 KB
testcase_05 AC 40 ms
384,968 KB
testcase_06 AC 40 ms
58,624 KB
testcase_07 AC 40 ms
53,760 KB
testcase_08 AC 42 ms
53,760 KB
testcase_09 AC 42 ms
54,144 KB
testcase_10 AC 41 ms
53,632 KB
testcase_11 AC 41 ms
53,376 KB
testcase_12 AC 41 ms
53,888 KB
testcase_13 AC 41 ms
53,760 KB
testcase_14 AC 40 ms
54,016 KB
testcase_15 AC 39 ms
54,144 KB
testcase_16 AC 48 ms
61,404 KB
testcase_17 AC 41 ms
53,760 KB
testcase_18 AC 40 ms
53,760 KB
testcase_19 AC 40 ms
53,760 KB
testcase_20 AC 41 ms
53,760 KB
testcase_21 AC 41 ms
53,376 KB
testcase_22 AC 41 ms
53,888 KB
testcase_23 AC 42 ms
53,888 KB
testcase_24 AC 45 ms
53,760 KB
testcase_25 AC 44 ms
54,144 KB
testcase_26 AC 44 ms
53,760 KB
testcase_27 AC 43 ms
53,760 KB
testcase_28 AC 44 ms
53,504 KB
testcase_29 AC 44 ms
53,632 KB
testcase_30 AC 44 ms
53,632 KB
testcase_31 AC 43 ms
53,632 KB
testcase_32 AC 43 ms
53,888 KB
testcase_33 AC 43 ms
53,504 KB
testcase_34 AC 43 ms
53,760 KB
testcase_35 AC 43 ms
53,632 KB
testcase_36 AC 44 ms
53,376 KB
testcase_37 AC 44 ms
53,632 KB
testcase_38 AC 43 ms
53,632 KB
testcase_39 AC 44 ms
54,016 KB
testcase_40 AC 58 ms
62,720 KB
testcase_41 AC 59 ms
63,232 KB
testcase_42 AC 57 ms
62,848 KB
testcase_43 AC 56 ms
62,336 KB
testcase_44 AC 57 ms
62,592 KB
testcase_45 AC 58 ms
62,720 KB
testcase_46 AC 57 ms
62,208 KB
testcase_47 AC 57 ms
62,592 KB
testcase_48 AC 59 ms
63,104 KB
testcase_49 AC 56 ms
62,080 KB
testcase_50 AC 56 ms
62,208 KB
testcase_51 AC 57 ms
62,720 KB
testcase_52 AC 57 ms
62,592 KB
testcase_53 AC 70 ms
67,456 KB
testcase_54 AC 57 ms
62,336 KB
testcase_55 AC 57 ms
62,336 KB
testcase_56 AC 61 ms
63,744 KB
testcase_57 AC 58 ms
62,848 KB
testcase_58 AC 58 ms
62,848 KB
testcase_59 AC 57 ms
62,720 KB
testcase_60 AC 73 ms
68,864 KB
testcase_61 AC 45 ms
53,888 KB
testcase_62 TLE -
testcase_63 AC 155 ms
76,160 KB
testcase_64 AC 314 ms
79,104 KB
testcase_65 TLE -
testcase_66 TLE -
testcase_67 TLE -
testcase_68 AC 101 ms
76,672 KB
testcase_69 AC 113 ms
76,652 KB
testcase_70 AC 43 ms
54,056 KB
testcase_71 AC 42 ms
53,376 KB
testcase_72 AC 41 ms
53,812 KB
testcase_73 AC 42 ms
53,552 KB
testcase_74 AC 43 ms
53,760 KB
testcase_75 AC 42 ms
53,632 KB
testcase_76 AC 41 ms
53,532 KB
testcase_77 AC 42 ms
53,504 KB
testcase_78 AC 42 ms
53,760 KB
testcase_79 AC 49 ms
391,984 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)
    cnt=0
    while len(queue)!=0:
        cnt+=1
        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])
            elif ans[num4[j][0]]>num3+num4[j][1]:
                ans[num4[j][0]]=num3+num4[j][1]
                queue.append(num4[j][0])
        if cnt>=10**7:
            break
    ans2=0
    for j in range(n):
        if ans[j]!=10**18:
            ans2+=ans[j]
    print(ans2)
0