結果

問題 No.1473 おでぶなおばけさん
ユーザー irumo8202irumo8202
提出日時 2022-01-30 14:17:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,200 ms / 2,000 ms
コード長 752 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 131,072 KB
最終ジャッジ日時 2024-06-11 08:16:17
合計ジャッジ時間 22,730 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,760 KB
testcase_01 AC 45 ms
54,016 KB
testcase_02 AC 850 ms
116,608 KB
testcase_03 AC 463 ms
110,592 KB
testcase_04 AC 610 ms
99,584 KB
testcase_05 AC 231 ms
80,256 KB
testcase_06 AC 875 ms
108,544 KB
testcase_07 AC 801 ms
122,632 KB
testcase_08 AC 1,200 ms
122,624 KB
testcase_09 AC 664 ms
122,624 KB
testcase_10 AC 243 ms
84,224 KB
testcase_11 AC 262 ms
83,856 KB
testcase_12 AC 221 ms
83,840 KB
testcase_13 AC 166 ms
80,768 KB
testcase_14 AC 150 ms
78,964 KB
testcase_15 AC 221 ms
83,584 KB
testcase_16 AC 188 ms
82,944 KB
testcase_17 AC 93 ms
77,312 KB
testcase_18 AC 106 ms
77,184 KB
testcase_19 AC 300 ms
84,600 KB
testcase_20 AC 351 ms
113,280 KB
testcase_21 AC 557 ms
98,816 KB
testcase_22 AC 373 ms
124,416 KB
testcase_23 AC 333 ms
122,624 KB
testcase_24 AC 322 ms
115,840 KB
testcase_25 AC 837 ms
107,520 KB
testcase_26 AC 791 ms
104,576 KB
testcase_27 AC 201 ms
81,408 KB
testcase_28 AC 998 ms
117,632 KB
testcase_29 AC 578 ms
97,792 KB
testcase_30 AC 649 ms
100,608 KB
testcase_31 AC 593 ms
131,072 KB
testcase_32 AC 568 ms
117,376 KB
testcase_33 AC 472 ms
109,696 KB
testcase_34 AC 243 ms
96,000 KB
testcase_35 AC 279 ms
90,624 KB
testcase_36 AC 439 ms
92,800 KB
testcase_37 AC 612 ms
104,576 KB
testcase_38 AC 166 ms
79,360 KB
testcase_39 AC 200 ms
83,328 KB
testcase_40 AC 186 ms
83,072 KB
testcase_41 AC 203 ms
87,476 KB
testcase_42 AC 208 ms
87,476 KB
testcase_43 AC 263 ms
108,288 KB
testcase_44 AC 254 ms
108,416 KB
testcase_45 AC 255 ms
108,416 KB
testcase_46 AC 364 ms
109,312 KB
testcase_47 AC 418 ms
114,944 KB
testcase_48 AC 479 ms
115,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N, M = map(int, input().split())

G = [[] for _ in range(N)]

for _ in range(M):
    s, t, d = map(int, input().split())
    s -= 1
    t -= 1
    G[s].append((t, d))
    G[t].append((s, d))


def bfs(lim):
    que = deque([0])
    dist = [-1] * N
    dist[0] = 0
    while que:
        node = que.popleft()
        nears = G[node]

        for near, d in nears:
            if dist[near] != -1:
                continue
            if d >= lim:
                dist[near] = dist[node] + 1
                que.append(near)
    return dist[-1]


left = 0
right = 10 ** 18

while right - left > 1:
    mid = (right + left) // 2
    if bfs(mid) == -1:
        right = mid
    else:
        left = mid

print(left, bfs(left))
0