結果

問題 No.1473 おでぶなおばけさん
ユーザー lloyzlloyz
提出日時 2022-08-11 22:21:22
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,357 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 848,960 KB
最終ジャッジ日時 2024-09-22 05:17:36
合計ジャッジ時間 17,749 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,800 KB
testcase_01 AC 45 ms
55,604 KB
testcase_02 AC 713 ms
101,176 KB
testcase_03 AC 329 ms
99,128 KB
testcase_04 AC 319 ms
89,764 KB
testcase_05 AC 166 ms
80,124 KB
testcase_06 AC 548 ms
95,996 KB
testcase_07 AC 564 ms
102,180 KB
testcase_08 AC 909 ms
102,052 KB
testcase_09 AC 498 ms
103,844 KB
testcase_10 AC 150 ms
83,688 KB
testcase_11 AC 260 ms
83,252 KB
testcase_12 AC 129 ms
84,068 KB
testcase_13 AC 127 ms
81,728 KB
testcase_14 AC 93 ms
79,660 KB
testcase_15 AC 176 ms
83,960 KB
testcase_16 AC 117 ms
82,708 KB
testcase_17 AC 62 ms
71,220 KB
testcase_18 AC 77 ms
77,140 KB
testcase_19 AC 162 ms
84,624 KB
testcase_20 AC 276 ms
97,448 KB
testcase_21 AC 389 ms
92,512 KB
testcase_22 AC 207 ms
106,084 KB
testcase_23 AC 187 ms
105,504 KB
testcase_24 AC 193 ms
101,556 KB
testcase_25 AC 707 ms
99,528 KB
testcase_26 AC 292 ms
98,568 KB
testcase_27 AC 222 ms
83,432 KB
testcase_28 AC 419 ms
103,028 KB
testcase_29 AC 392 ms
95,004 KB
testcase_30 AC 597 ms
98,992 KB
testcase_31 AC 440 ms
108,232 KB
testcase_32 AC 364 ms
101,556 KB
testcase_33 AC 252 ms
95,404 KB
testcase_34 AC 140 ms
86,948 KB
testcase_35 AC 168 ms
87,868 KB
testcase_36 AC 488 ms
90,600 KB
testcase_37 AC 242 ms
99,048 KB
testcase_38 AC 85 ms
78,352 KB
testcase_39 AC 119 ms
82,980 KB
testcase_40 AC 119 ms
82,476 KB
testcase_41 AC 160 ms
88,616 KB
testcase_42 AC 121 ms
88,624 KB
testcase_43 MLE -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import sys
input = sys.stdin.readline
INF = 1 << 30

def main():
    n, m = map(int, input().split())
    edge = [[] for _ in range(n)]
    for _ in range(m):
        s, t, d = map(int, input().split())
        s -= 1
        t -= 1
        edge[s].append((t, d))
        edge[t].append((s, d))

    left, right = 1, 10**9 + 10
    while right - left > 1:
        mid = (left + right) // 2
        flag = False
        Que = deque([0])
        C = [INF] * n
        C[0] = 0
        while Que:
            cp = Que.popleft()
            if cp == n - 1:
                break
            cnt = C[cp]
            for np, w in edge[cp]:
                if w < mid:
                    continue
                if cnt + 1 > C[np]:
                    continue
                C[np] = cnt + 1
                Que.append(np)
        if C[n - 1] < INF:
            left = mid
        else:
            right = mid

    Que = deque([0])
    C = [INF] * n
    C[0] = 0
    while Que:
        cp = Que.popleft()
        if cp == n - 1:
            print(left, C[cp])
            break
        cnt = C[cp]
        for np, w in edge[cp]:
            if w < left:
                continue
            if cnt + 1 > C[np]:
                continue
            C[np] = cnt + 1
            Que.append(np)

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