結果

問題 No.1473 おでぶなおばけさん
ユーザー いたいた
提出日時 2024-12-04 13:54:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 544 bytes
コンパイル時間 422 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 106,140 KB
最終ジャッジ日時 2024-12-04 13:54:25
合計ジャッジ時間 21,432 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,352 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 510 ms
94,976 KB
testcase_08 WA -
testcase_09 AC 468 ms
94,720 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 208 ms
90,624 KB
testcase_13 AC 133 ms
83,456 KB
testcase_14 AC 119 ms
80,128 KB
testcase_15 AC 160 ms
86,784 KB
testcase_16 AC 190 ms
87,936 KB
testcase_17 AC 98 ms
77,184 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 192 ms
88,192 KB
testcase_41 AC 155 ms
90,644 KB
testcase_42 AC 151 ms
90,908 KB
testcase_43 AC 551 ms
106,132 KB
testcase_44 AC 515 ms
105,752 KB
testcase_45 AC 523 ms
106,140 KB
testcase_46 AC 200 ms
88,448 KB
testcase_47 AC 218 ms
89,984 KB
testcase_48 AC 228 ms
89,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
n,m=map(int,input().split())
a=[[]for _ in range(m)]

for _ in range(m):
  s,t,d=map(int,input().split())
  s,t=s-1,t-1
  a[s].append((t,d))
  a[t].append((s,d))
q=[]
heapq.heapify(q)
heapq.heappush(q,(-10**18,0,0))
dist=[0]*n
dist[0]=10**18
distt=[0]*n
while q:
  dis,now,distanc=heapq.heappop(q)
  dis=-dis
  if dis<dist[now]:
    continue
  distt[now]=distanc
  for next,ndi in a[now]:
    v=min(dis,ndi)
    if dist[next]>=v:
      continue
    dist[next]=v
    heapq.heappush(q,(-v,next,distanc+1))
print(dist[n-1],distt[n-1])
0