結果

問題 No.1473 おでぶなおばけさん
ユーザー hiragnhiragn
提出日時 2022-12-04 01:13:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 616 ms / 2,000 ms
コード長 1,298 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 108,272 KB
最終ジャッジ日時 2024-10-11 03:36:31
合計ジャッジ時間 14,385 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,264 KB
testcase_01 AC 42 ms
55,528 KB
testcase_02 AC 433 ms
104,880 KB
testcase_03 AC 513 ms
105,048 KB
testcase_04 AC 219 ms
90,296 KB
testcase_05 AC 175 ms
81,948 KB
testcase_06 AC 616 ms
108,152 KB
testcase_07 AC 301 ms
99,040 KB
testcase_08 AC 288 ms
99,056 KB
testcase_09 AC 272 ms
99,008 KB
testcase_10 AC 180 ms
86,404 KB
testcase_11 AC 170 ms
83,820 KB
testcase_12 AC 176 ms
83,980 KB
testcase_13 AC 127 ms
80,592 KB
testcase_14 AC 110 ms
78,620 KB
testcase_15 AC 146 ms
83,096 KB
testcase_16 AC 156 ms
82,864 KB
testcase_17 AC 87 ms
77,340 KB
testcase_18 AC 93 ms
77,136 KB
testcase_19 AC 285 ms
87,432 KB
testcase_20 AC 474 ms
101,136 KB
testcase_21 AC 328 ms
91,960 KB
testcase_22 AC 253 ms
93,560 KB
testcase_23 AC 240 ms
93,472 KB
testcase_24 AC 235 ms
91,600 KB
testcase_25 AC 253 ms
92,900 KB
testcase_26 AC 263 ms
94,032 KB
testcase_27 AC 143 ms
80,180 KB
testcase_28 AC 338 ms
102,264 KB
testcase_29 AC 349 ms
92,264 KB
testcase_30 AC 462 ms
99,268 KB
testcase_31 AC 332 ms
101,892 KB
testcase_32 AC 606 ms
108,272 KB
testcase_33 AC 378 ms
97,028 KB
testcase_34 AC 205 ms
85,312 KB
testcase_35 AC 224 ms
85,648 KB
testcase_36 AC 206 ms
86,352 KB
testcase_37 AC 235 ms
93,040 KB
testcase_38 AC 106 ms
77,684 KB
testcase_39 AC 159 ms
82,712 KB
testcase_40 AC 158 ms
82,692 KB
testcase_41 AC 146 ms
87,620 KB
testcase_42 AC 147 ms
87,228 KB
testcase_43 AC 190 ms
95,544 KB
testcase_44 AC 189 ms
95,552 KB
testcase_45 AC 188 ms
95,296 KB
testcase_46 AC 204 ms
91,216 KB
testcase_47 AC 246 ms
92,392 KB
testcase_48 AC 237 ms
92,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""
https://qiita.com/c-yan/items/1ad8c9d5400077f19459#e-1473-%E3%81%8A%E3%81%A7%E3%81%B6%E3%81%AA%E3%81%8A%E3%81%B0%E3%81%91%E3%81%95%E3%82%93

c-yanさんのqiita記事の変数名をいじっただけ。
"""
from collections import defaultdict, deque


def main():
    n, m = map(int, input().split())

    adj = defaultdict(list)
    for _ in range(m):
        s, t, d = map(int, input().split())
        s -= 1
        t -= 1
        adj[s].append((t, d))
        adj[t].append((s, d))

    q = deque([(0, 10 ** 15)])
    # (都市iに到達可能な体重wのmax)
    # = (その経路のdのmin)
    # dp[i]:(都市iまでの経路のdのmin, 対応するパス長)
    dp = [(-1, -1) for _ in range(n)]
    dp[0] = (10 ** 15, 0)
    while q:
        cur_city, cur_d = q.popleft()
        if dp[cur_city][0] > cur_d:
            continue
        for nxt_city, nxt_d in adj[cur_city]:
            new_d = min(cur_d, nxt_d)
            if dp[nxt_city][0] >= new_d:
                continue
            if dp[nxt_city][0] == new_d:
                dp[nxt_city] = (new_d, min(dp[nxt_city][1], dp[cur_city][1] + 1))
            else:
                dp[nxt_city] = (new_d, dp[cur_city][1] + 1)
            q.append((nxt_city, new_d))
    print(*dp[n - 1])


if __name__ == "__main__":
    main()
0