結果

問題 No.1473 おでぶなおばけさん
ユーザー いたいた
提出日時 2024-12-04 14:45:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 791 ms / 2,000 ms
コード長 624 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 105,964 KB
最終ジャッジ日時 2024-12-04 14:45:19
合計ジャッジ時間 16,353 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,120 KB
testcase_01 AC 44 ms
53,120 KB
testcase_02 AC 530 ms
104,004 KB
testcase_03 AC 728 ms
102,400 KB
testcase_04 AC 251 ms
92,288 KB
testcase_05 AC 196 ms
82,176 KB
testcase_06 AC 791 ms
104,116 KB
testcase_07 AC 319 ms
97,920 KB
testcase_08 AC 316 ms
97,280 KB
testcase_09 AC 301 ms
97,792 KB
testcase_10 AC 207 ms
87,040 KB
testcase_11 AC 179 ms
87,296 KB
testcase_12 AC 195 ms
90,624 KB
testcase_13 AC 140 ms
83,200 KB
testcase_14 AC 124 ms
80,128 KB
testcase_15 AC 158 ms
86,912 KB
testcase_16 AC 172 ms
86,528 KB
testcase_17 AC 103 ms
77,056 KB
testcase_18 AC 98 ms
77,440 KB
testcase_19 AC 295 ms
88,576 KB
testcase_20 AC 560 ms
98,304 KB
testcase_21 AC 380 ms
93,568 KB
testcase_22 AC 269 ms
98,176 KB
testcase_23 AC 246 ms
96,512 KB
testcase_24 AC 250 ms
94,208 KB
testcase_25 AC 280 ms
97,792 KB
testcase_26 AC 271 ms
97,280 KB
testcase_27 AC 145 ms
81,280 KB
testcase_28 AC 382 ms
104,960 KB
testcase_29 AC 420 ms
94,208 KB
testcase_30 AC 542 ms
98,176 KB
testcase_31 AC 400 ms
104,704 KB
testcase_32 AC 716 ms
105,964 KB
testcase_33 AC 468 ms
97,024 KB
testcase_34 AC 277 ms
87,168 KB
testcase_35 AC 255 ms
88,064 KB
testcase_36 AC 207 ms
87,296 KB
testcase_37 AC 237 ms
95,360 KB
testcase_38 AC 112 ms
78,336 KB
testcase_39 AC 194 ms
86,784 KB
testcase_40 AC 164 ms
86,784 KB
testcase_41 AC 152 ms
92,240 KB
testcase_42 AC 148 ms
92,244 KB
testcase_43 AC 196 ms
98,048 KB
testcase_44 AC 199 ms
97,920 KB
testcase_45 AC 192 ms
98,176 KB
testcase_46 AC 212 ms
93,824 KB
testcase_47 AC 231 ms
97,152 KB
testcase_48 AC 208 ms
89,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
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=[]
q=deque([])
q.append((10**18,0))
dist=[[0]+[0] for _ in range(n)]
dist[0][0]=10**18
while q:
  dis,now=q.popleft()
  if dis<dist[now][0]:
    continue
  for next,ndi in a[now]:
    v=min(dis,ndi)
    if dist[next][0]>=v:
      if dist[next][0]==v:
        dist[next][1]=min(dist[next][1],dist[now][1]+1)
      continue
    dist[next][0]=v
    dist[next][1]=dist[now][1]+1
    q.append((v,next))
print(dist[n-1][0],dist[n-1][1])
0