結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,148 KB
testcase_01 AC 41 ms
54,988 KB
testcase_02 AC 703 ms
100,684 KB
testcase_03 AC 319 ms
98,628 KB
testcase_04 AC 352 ms
89,896 KB
testcase_05 AC 171 ms
79,692 KB
testcase_06 AC 543 ms
96,156 KB
testcase_07 AC 536 ms
102,432 KB
testcase_08 AC 878 ms
101,928 KB
testcase_09 AC 519 ms
103,860 KB
testcase_10 AC 150 ms
83,324 KB
testcase_11 AC 262 ms
83,444 KB
testcase_12 AC 128 ms
83,540 KB
testcase_13 AC 125 ms
82,080 KB
testcase_14 AC 90 ms
80,028 KB
testcase_15 AC 176 ms
83,780 KB
testcase_16 AC 121 ms
82,552 KB
testcase_17 AC 63 ms
71,540 KB
testcase_18 AC 79 ms
77,136 KB
testcase_19 AC 165 ms
84,612 KB
testcase_20 AC 290 ms
97,552 KB
testcase_21 AC 421 ms
91,888 KB
testcase_22 AC 206 ms
106,000 KB
testcase_23 AC 186 ms
105,568 KB
testcase_24 AC 186 ms
101,812 KB
testcase_25 AC 666 ms
99,672 KB
testcase_26 AC 279 ms
98,888 KB
testcase_27 AC 224 ms
83,308 KB
testcase_28 AC 405 ms
103,296 KB
testcase_29 AC 368 ms
95,296 KB
testcase_30 AC 595 ms
98,660 KB
testcase_31 AC 449 ms
108,192 KB
testcase_32 AC 369 ms
101,488 KB
testcase_33 AC 254 ms
95,284 KB
testcase_34 AC 136 ms
87,256 KB
testcase_35 AC 170 ms
87,900 KB
testcase_36 AC 488 ms
90,880 KB
testcase_37 AC 222 ms
100,008 KB
testcase_38 AC 83 ms
78,188 KB
testcase_39 AC 117 ms
82,748 KB
testcase_40 AC 116 ms
82,616 KB
testcase_41 AC 159 ms
88,748 KB
testcase_42 AC 118 ms
88,616 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

def main():
    n, m = map(int, input().split())
    edge = [[] for _ in range(n + 1)]
    for _ in range(m):
        s, t, d = map(int, input().split())
        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([1])
        C = [10**18 for _ in range(n + 1)]
        C[1] = 0
        while Que:
            cp = Que.popleft()
            if cp == n:
                flag = True
                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 flag:
            left = mid
        else:
            right = mid

    Que = deque([1])
    C = [10**18 for _ in range(n + 1)]
    C[1] = 0
    while Que:
        cp = Que.popleft()
        if cp == n:
            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