結果

問題 No.1473 おでぶなおばけさん
ユーザー いたいた
提出日時 2024-12-04 14:13:04
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 583 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 142,700 KB
最終ジャッジ日時 2024-12-04 14:13:41
合計ジャッジ時間 30,048 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,608 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 1,436 ms
123,332 KB
testcase_03 AC 1,967 ms
133,760 KB
testcase_04 AC 488 ms
90,992 KB
testcase_05 AC 419 ms
84,352 KB
testcase_06 TLE -
testcase_07 AC 545 ms
101,532 KB
testcase_08 AC 583 ms
101,952 KB
testcase_09 AC 457 ms
101,760 KB
testcase_10 AC 205 ms
90,880 KB
testcase_11 AC 203 ms
89,856 KB
testcase_12 AC 251 ms
90,240 KB
testcase_13 AC 136 ms
82,944 KB
testcase_14 AC 118 ms
80,640 KB
testcase_15 AC 156 ms
86,656 KB
testcase_16 AC 197 ms
88,192 KB
testcase_17 AC 104 ms
77,440 KB
testcase_18 AC 111 ms
77,696 KB
testcase_19 AC 603 ms
95,692 KB
testcase_20 AC 1,715 ms
123,824 KB
testcase_21 AC 726 ms
106,488 KB
testcase_22 AC 463 ms
101,120 KB
testcase_23 AC 403 ms
96,640 KB
testcase_24 AC 450 ms
97,460 KB
testcase_25 AC 476 ms
100,480 KB
testcase_26 AC 511 ms
101,020 KB
testcase_27 AC 203 ms
83,456 KB
testcase_28 AC 717 ms
102,612 KB
testcase_29 AC 1,067 ms
110,172 KB
testcase_30 AC 1,416 ms
119,220 KB
testcase_31 AC 824 ms
107,656 KB
testcase_32 TLE -
testcase_33 AC 1,313 ms
119,324 KB
testcase_34 AC 534 ms
93,924 KB
testcase_35 AC 559 ms
94,520 KB
testcase_36 AC 295 ms
91,168 KB
testcase_37 AC 399 ms
96,384 KB
testcase_38 AC 168 ms
80,128 KB
testcase_39 AC 194 ms
88,448 KB
testcase_40 AC 187 ms
88,064 KB
testcase_41 AC 169 ms
91,160 KB
testcase_42 AC 149 ms
90,904 KB
testcase_43 AC 497 ms
108,160 KB
testcase_44 AC 462 ms
107,904 KB
testcase_45 AC 477 ms
107,648 KB
testcase_46 AC 227 ms
92,032 KB
testcase_47 AC 217 ms
95,616 KB
testcase_48 AC 204 ms
88,576 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,(0,-10**18,0))
dist=[[0]*2 for _ in range(n)]
dist[0][0]=10**18
while q:
  distanc,dis,now=heapq.heappop(q)
  dis=-dis
  if dis<dist[now][0]:
    continue
  for next,ndi in a[now]:
    v=min(dis,ndi)
    if dist[next][0]>=v:
      continue
    dist[next][0]=v
    dist[next][1]=distanc+1
    heapq.heappush(q,(distanc+1,-v,next))
print(dist[n-1][0],dist[n-1][1])
      
0