結果

問題 No.1473 おでぶなおばけさん
ユーザー NoaSaberNoaSaber
提出日時 2021-04-09 22:52:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 703 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 101,408 KB
最終ジャッジ日時 2024-06-25 06:36:43
合計ジャッジ時間 21,779 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,736 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 565 ms
95,104 KB
testcase_08 WA -
testcase_09 AC 550 ms
95,008 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 212 ms
86,652 KB
testcase_13 AC 135 ms
80,640 KB
testcase_14 AC 118 ms
78,936 KB
testcase_15 AC 156 ms
83,456 KB
testcase_16 AC 192 ms
84,480 KB
testcase_17 AC 95 ms
77,440 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 208 ms
84,608 KB
testcase_41 AC 148 ms
87,512 KB
testcase_42 AC 149 ms
87,012 KB
testcase_43 AC 545 ms
101,156 KB
testcase_44 AC 541 ms
101,408 KB
testcase_45 AC 545 ms
101,276 KB
testcase_46 AC 212 ms
87,808 KB
testcase_47 AC 235 ms
89,856 KB
testcase_48 AC 245 ms
89,936 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]=-inf
    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