結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,828 KB
testcase_01 AC 41 ms
54,656 KB
testcase_02 AC 795 ms
102,108 KB
testcase_03 AC 391 ms
98,888 KB
testcase_04 AC 373 ms
91,108 KB
testcase_05 AC 197 ms
80,360 KB
testcase_06 AC 583 ms
96,904 KB
testcase_07 AC 563 ms
102,264 KB
testcase_08 AC 867 ms
102,776 KB
testcase_09 AC 510 ms
103,812 KB
testcase_10 AC 195 ms
84,092 KB
testcase_11 AC 306 ms
86,524 KB
testcase_12 AC 171 ms
84,176 KB
testcase_13 AC 157 ms
82,744 KB
testcase_14 AC 116 ms
79,164 KB
testcase_15 AC 219 ms
85,052 KB
testcase_16 AC 161 ms
83,008 KB
testcase_17 AC 85 ms
77,200 KB
testcase_18 AC 99 ms
77,424 KB
testcase_19 AC 206 ms
84,788 KB
testcase_20 AC 319 ms
97,584 KB
testcase_21 AC 454 ms
92,308 KB
testcase_22 AC 249 ms
106,256 KB
testcase_23 AC 225 ms
106,128 KB
testcase_24 AC 240 ms
102,068 KB
testcase_25 AC 721 ms
101,752 KB
testcase_26 AC 337 ms
99,444 KB
testcase_27 AC 246 ms
82,932 KB
testcase_28 AC 471 ms
103,624 KB
testcase_29 AC 415 ms
95,344 KB
testcase_30 AC 639 ms
99,928 KB
testcase_31 AC 504 ms
108,608 KB
testcase_32 AC 452 ms
100,236 KB
testcase_33 AC 295 ms
96,228 KB
testcase_34 AC 170 ms
90,604 KB
testcase_35 AC 200 ms
86,032 KB
testcase_36 AC 550 ms
93,144 KB
testcase_37 AC 276 ms
99,328 KB
testcase_38 AC 106 ms
77,808 KB
testcase_39 AC 162 ms
82,968 KB
testcase_40 AC 160 ms
82,972 KB
testcase_41 AC 196 ms
87,724 KB
testcase_42 AC 156 ms
87,868 KB
testcase_43 MLE -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

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