結果

問題 No.1473 おでぶなおばけさん
ユーザー c-yanc-yan
提出日時 2021-04-09 22:56:17
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 716 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 81,868 KB
実行使用メモリ 303,612 KB
最終ジャッジ日時 2024-06-25 06:39:50
合計ジャッジ時間 14,546 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
58,880 KB
testcase_01 AC 41 ms
55,020 KB
testcase_02 AC 381 ms
98,560 KB
testcase_03 AC 539 ms
97,348 KB
testcase_04 AC 182 ms
85,272 KB
testcase_05 AC 129 ms
78,832 KB
testcase_06 AC 624 ms
101,248 KB
testcase_07 AC 245 ms
94,668 KB
testcase_08 AC 247 ms
94,464 KB
testcase_09 AC 228 ms
95,224 KB
testcase_10 AC 154 ms
83,364 KB
testcase_11 AC 166 ms
83,244 KB
testcase_12 AC 151 ms
83,224 KB
testcase_13 AC 117 ms
80,180 KB
testcase_14 AC 102 ms
79,568 KB
testcase_15 AC 135 ms
82,816 KB
testcase_16 AC 132 ms
82,400 KB
testcase_17 AC 63 ms
70,912 KB
testcase_18 AC 68 ms
73,984 KB
testcase_19 AC 273 ms
84,888 KB
testcase_20 AC 426 ms
96,984 KB
testcase_21 AC 331 ms
89,048 KB
testcase_22 AC 191 ms
89,492 KB
testcase_23 AC 185 ms
90,240 KB
testcase_24 AC 169 ms
88,832 KB
testcase_25 AC 184 ms
88,812 KB
testcase_26 AC 185 ms
88,616 KB
testcase_27 AC 106 ms
80,896 KB
testcase_28 AC 262 ms
95,232 KB
testcase_29 AC 357 ms
89,092 KB
testcase_30 AC 438 ms
94,592 KB
testcase_31 AC 270 ms
94,508 KB
testcase_32 AC 616 ms
102,316 KB
testcase_33 AC 368 ms
92,508 KB
testcase_34 AC 179 ms
83,000 KB
testcase_35 AC 211 ms
83,708 KB
testcase_36 AC 156 ms
85,248 KB
testcase_37 AC 168 ms
89,204 KB
testcase_38 AC 82 ms
78,336 KB
testcase_39 AC 132 ms
82,816 KB
testcase_40 AC 136 ms
82,880 KB
testcase_41 AC 124 ms
86,688 KB
testcase_42 AC 128 ms
86,180 KB
testcase_43 TLE -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
権限があれば一括ダウンロードができます

ソースコード

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()
    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