結果

問題 No.1473 おでぶなおばけさん
ユーザー c-yanc-yan
提出日時 2021-04-09 22:58:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 754 ms / 2,000 ms
コード長 756 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 101,760 KB
最終ジャッジ日時 2024-06-25 06:42:08
合計ジャッジ時間 14,479 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,632 KB
testcase_01 AC 46 ms
53,632 KB
testcase_02 AC 491 ms
98,560 KB
testcase_03 AC 636 ms
96,640 KB
testcase_04 AC 213 ms
84,992 KB
testcase_05 AC 175 ms
80,128 KB
testcase_06 AC 733 ms
100,608 KB
testcase_07 AC 302 ms
94,976 KB
testcase_08 AC 295 ms
94,848 KB
testcase_09 AC 270 ms
95,104 KB
testcase_10 AC 163 ms
83,456 KB
testcase_11 AC 156 ms
83,200 KB
testcase_12 AC 163 ms
83,328 KB
testcase_13 AC 117 ms
79,744 KB
testcase_14 AC 100 ms
77,056 KB
testcase_15 AC 137 ms
82,816 KB
testcase_16 AC 131 ms
82,560 KB
testcase_17 AC 75 ms
71,552 KB
testcase_18 AC 80 ms
74,368 KB
testcase_19 AC 258 ms
84,736 KB
testcase_20 AC 543 ms
96,000 KB
testcase_21 AC 318 ms
89,088 KB
testcase_22 AC 238 ms
89,728 KB
testcase_23 AC 209 ms
89,984 KB
testcase_24 AC 216 ms
89,088 KB
testcase_25 AC 232 ms
88,832 KB
testcase_26 AC 242 ms
88,576 KB
testcase_27 AC 137 ms
80,768 KB
testcase_28 AC 336 ms
94,976 KB
testcase_29 AC 408 ms
88,320 KB
testcase_30 AC 527 ms
93,568 KB
testcase_31 AC 350 ms
94,464 KB
testcase_32 AC 754 ms
101,760 KB
testcase_33 AC 447 ms
92,160 KB
testcase_34 AC 224 ms
83,200 KB
testcase_35 AC 227 ms
83,712 KB
testcase_36 AC 196 ms
85,504 KB
testcase_37 AC 216 ms
89,088 KB
testcase_38 AC 98 ms
77,952 KB
testcase_39 AC 133 ms
82,560 KB
testcase_40 AC 132 ms
82,688 KB
testcase_41 AC 120 ms
86,180 KB
testcase_42 AC 120 ms
86,688 KB
testcase_43 AC 164 ms
92,032 KB
testcase_44 AC 164 ms
92,288 KB
testcase_45 AC 168 ms
92,160 KB
testcase_46 AC 190 ms
88,320 KB
testcase_47 AC 215 ms
89,216 KB
testcase_48 AC 203 ms
88,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
from sys import stdin

readline = stdin.readline

INF = 10 ** 18

n, m = map(int, readline().split())

links = [[] for _ in range(n)]
for _ in range(m):
    s, t, d = map(int, readline().split())
    s, t = s - 1, t - 1
    links[s].append((t, d))
    links[t].append((s, d))

q = deque([(0, INF)])
dp = [(-1, -1) for _ in range(n)]
dp[0] = (INF, 0)
while q:
    cp, mw = q.popleft()
    if dp[cp][0] > mw:
        continue
    for np, lw in links[cp]:
        w, s = dp[np]
        nw = min(mw, lw)
        if w >= nw:
            continue
        if w == nw:
            dp[np] = (nw, min(s, dp[cp][1] + 1))
        else:
            dp[np] = (nw, dp[cp][1] + 1)
        q.append((np, nw))
print(dp[n - 1][0], dp[n - 1][1])
0