結果

問題 No.1473 おでぶなおばけさん
ユーザー Super SolenoidSuper Solenoid
提出日時 2021-05-16 17:49:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 462 ms / 2,000 ms
コード長 923 bytes
コンパイル時間 498 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 102,128 KB
最終ジャッジ日時 2024-10-05 00:57:24
合計ジャッジ時間 11,251 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,444 KB
testcase_01 AC 37 ms
53,688 KB
testcase_02 AC 385 ms
102,128 KB
testcase_03 AC 372 ms
96,896 KB
testcase_04 AC 178 ms
85,888 KB
testcase_05 AC 144 ms
80,352 KB
testcase_06 AC 462 ms
99,368 KB
testcase_07 AC 221 ms
93,848 KB
testcase_08 AC 226 ms
93,644 KB
testcase_09 AC 207 ms
93,804 KB
testcase_10 AC 142 ms
83,772 KB
testcase_11 AC 140 ms
83,736 KB
testcase_12 AC 141 ms
83,984 KB
testcase_13 AC 106 ms
80,848 KB
testcase_14 AC 92 ms
78,540 KB
testcase_15 AC 120 ms
83,400 KB
testcase_16 AC 129 ms
82,868 KB
testcase_17 AC 72 ms
77,312 KB
testcase_18 AC 75 ms
77,228 KB
testcase_19 AC 204 ms
85,128 KB
testcase_20 AC 334 ms
96,368 KB
testcase_21 AC 235 ms
89,128 KB
testcase_22 AC 182 ms
89,400 KB
testcase_23 AC 169 ms
90,112 KB
testcase_24 AC 165 ms
88,860 KB
testcase_25 AC 185 ms
89,024 KB
testcase_26 AC 195 ms
91,356 KB
testcase_27 AC 112 ms
79,936 KB
testcase_28 AC 240 ms
93,568 KB
testcase_29 AC 265 ms
89,080 KB
testcase_30 AC 340 ms
92,148 KB
testcase_31 AC 256 ms
93,624 KB
testcase_32 AC 440 ms
100,788 KB
testcase_33 AC 306 ms
91,780 KB
testcase_34 AC 177 ms
83,800 KB
testcase_35 AC 185 ms
85,260 KB
testcase_36 AC 158 ms
85,972 KB
testcase_37 AC 165 ms
89,504 KB
testcase_38 AC 88 ms
77,412 KB
testcase_39 AC 128 ms
82,988 KB
testcase_40 AC 128 ms
82,708 KB
testcase_41 AC 122 ms
87,520 KB
testcase_42 AC 120 ms
87,264 KB
testcase_43 AC 152 ms
92,664 KB
testcase_44 AC 155 ms
92,528 KB
testcase_45 AC 154 ms
92,912 KB
testcase_46 AC 152 ms
88,020 KB
testcase_47 AC 177 ms
88,760 KB
testcase_48 AC 159 ms
88,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
roads = [[] for _ in range(n)]

for i in range(m):
    s, t, d = map(int, input().split())
    s, t = s - 1, t - 1
    roads[s].append((t, d))
    roads[t].append((s, d))

from collections import deque
 
que = deque([(0, 1000000002)])
log = [(-1,-1) for _ in range(n)]

log[0] = (0, 1000000001)

while que:
    cc, cw = que.popleft()
    if log[cc][1] > cw:
        continue
    for nc, nw in roads[cc]:
        d, w = log[nc]
        mw = min(cw, nw)
        if w > mw:
            continue
        elif w == mw:
            if d <= log[cc][0] + 1:
                continue
            #重さが同じなら、距離(道の数)が小さい方へ更新
            log[nc] = (log[cc][0] + 1, mw)
        else:
            #従来の方が軽ければ、重さと距離を更新
            log[nc] = (log[cc][0] + 1, mw)
        que.append((nc, mw))
print(log[n - 1][1], log[n - 1][0])
0