結果

問題 No.1473 おでぶなおばけさん
ユーザー c-yanc-yan
提出日時 2021-04-09 22:50:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 671 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 289,152 KB
最終ジャッジ日時 2024-06-25 06:32:48
合計ジャッジ時間 14,061 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
59,264 KB
testcase_01 AC 42 ms
54,144 KB
testcase_02 AC 359 ms
98,688 KB
testcase_03 WA -
testcase_04 AC 161 ms
85,468 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 237 ms
94,884 KB
testcase_08 WA -
testcase_09 AC 228 ms
95,360 KB
testcase_10 AC 151 ms
83,840 KB
testcase_11 WA -
testcase_12 AC 146 ms
83,584 KB
testcase_13 AC 114 ms
80,112 KB
testcase_14 AC 98 ms
77,660 KB
testcase_15 AC 133 ms
83,200 KB
testcase_16 AC 129 ms
82,944 KB
testcase_17 AC 64 ms
70,528 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 315 ms
89,856 KB
testcase_22 AC 185 ms
89,600 KB
testcase_23 AC 172 ms
90,328 KB
testcase_24 AC 182 ms
89,088 KB
testcase_25 AC 183 ms
88,960 KB
testcase_26 AC 184 ms
88,604 KB
testcase_27 AC 110 ms
80,896 KB
testcase_28 AC 260 ms
95,488 KB
testcase_29 AC 342 ms
89,344 KB
testcase_30 AC 414 ms
94,796 KB
testcase_31 AC 254 ms
95,104 KB
testcase_32 WA -
testcase_33 AC 345 ms
92,784 KB
testcase_34 AC 165 ms
82,920 KB
testcase_35 AC 212 ms
83,612 KB
testcase_36 AC 151 ms
85,376 KB
testcase_37 AC 162 ms
89,344 KB
testcase_38 AC 80 ms
78,308 KB
testcase_39 AC 132 ms
82,944 KB
testcase_40 AC 131 ms
82,560 KB
testcase_41 AC 120 ms
86,432 KB
testcase_42 AC 126 ms
86,436 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, -1)
while q:
    cp, mw = q.popleft()
    for np, lw in links[cp]:
        w = dp[np][0]
        nw = min(mw, lw)
        if w >= nw:
            continue
        dp[np] = (nw, cp)
        q.append((np, nw))

c = 0
cp = n - 1
while cp != 0:
    cp = dp[cp][1]
    c += 1
print(dp[n - 1][0], c)
0