結果

問題 No.1473 おでぶなおばけさん
ユーザー Super SolenoidSuper Solenoid
提出日時 2021-05-16 17:45:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 923 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 52,992 KB
最終ジャッジ日時 2024-10-05 00:50:48
合計ジャッジ時間 8,674 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,752 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 1,590 ms
49,280 KB
testcase_03 TLE -
testcase_04 AC 564 ms
31,488 KB
testcase_05 AC 380 ms
18,432 KB
testcase_06 TLE -
testcase_07 AC 854 ms
52,992 KB
testcase_08 AC 843 ms
52,608 KB
testcase_09 AC 802 ms
52,096 KB
testcase_10 AC 839 ms
31,744 KB
testcase_11 AC 1,093 ms
30,848 KB
testcase_12 AC 1,130 ms
32,640 KB
testcase_13 AC 492 ms
22,528 KB
testcase_14 AC 299 ms
19,456 KB
testcase_15 AC 609 ms
27,392 KB
testcase_16 AC 1,025 ms
30,720 KB
testcase_17 AC 71 ms
11,904 KB
testcase_18 AC 129 ms
12,928 KB
testcase_19 AC 1,298 ms
31,872 KB
testcase_20 TLE -
testcase_21 AC 1,277 ms
40,576 KB
testcase_22 AC 678 ms
40,832 KB
testcase_23 AC 561 ms
37,632 KB
testcase_24 AC 558 ms
36,096 KB
testcase_25 AC 697 ms
42,624 KB
testcase_26 AC 736 ms
43,776 KB
testcase_27 AC 301 ms
23,040 KB
testcase_28 AC 1,022 ms
50,048 KB
testcase_29 AC 1,566 ms
39,296 KB
testcase_30 TLE -
testcase_31 AC 986 ms
48,896 KB
testcase_32 TLE -
testcase_33 AC 1,625 ms
40,064 KB
testcase_34 AC 602 ms
25,984 KB
testcase_35 AC 882 ms
28,032 KB
testcase_36 AC 552 ms
34,048 KB
testcase_37 AC 549 ms
37,888 KB
testcase_38 AC 127 ms
16,000 KB
testcase_39 AC 885 ms
31,104 KB
testcase_40 AC 896 ms
31,232 KB
testcase_41 AC 481 ms
27,916 KB
testcase_42 AC 475 ms
27,916 KB
testcase_43 AC 688 ms
44,216 KB
testcase_44 AC 670 ms
44,216 KB
testcase_45 AC 671 ms
43,968 KB
testcase_46 AC 547 ms
39,552 KB
testcase_47 AC 657 ms
45,440 KB
testcase_48 AC 583 ms
42,880 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