結果

問題 No.1473 おでぶなおばけさん
ユーザー NoaSaberNoaSaber
提出日時 2021-04-09 23:02:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 700 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,064 KB
実行使用メモリ 101,328 KB
最終ジャッジ日時 2024-06-25 06:48:06
合計ジャッジ時間 18,318 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,876 KB
testcase_01 AC 38 ms
53,232 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 475 ms
95,240 KB
testcase_08 WA -
testcase_09 AC 478 ms
94,744 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 191 ms
86,572 KB
testcase_13 AC 122 ms
80,988 KB
testcase_14 AC 105 ms
78,532 KB
testcase_15 AC 142 ms
83,084 KB
testcase_16 AC 173 ms
84,308 KB
testcase_17 AC 84 ms
77,248 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 176 ms
84,472 KB
testcase_41 AC 137 ms
87,384 KB
testcase_42 AC 134 ms
87,132 KB
testcase_43 AC 483 ms
100,996 KB
testcase_44 AC 495 ms
101,328 KB
testcase_45 AC 481 ms
101,200 KB
testcase_46 AC 178 ms
87,924 KB
testcase_47 AC 197 ms
90,132 KB
testcase_48 AC 204 ms
89,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
edge=[[] for i in range(n)]
for i in range(m):
    s,t,d=map(int,input().split())
    s-=1;t-=1
    edge[s].append((t,d*-1))
    edge[t].append((s,d*-1))
from heapq import heappop,heappush
def dijkstra(s,n,edge):
    inf=float("inf")
    ans=[inf]*n
    ans[s]=0
    root=[0]*n
    open=[[-inf,s]]
    while open:
        cost,node=heappop(open)
        if ans[node]<cost:
            continue
        for next,e_cost in edge[node]:
            if max(cost,e_cost)<ans[next]:
                ans[next]=max(cost,e_cost)
                root[next]=root[node]+1
                heappush(open,[max(cost,e_cost),next])
    return ans[-1]*-1,root[-1]
print(*dijkstra(0,n,edge))
0