結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,760 KB
testcase_01 AC 41 ms
53,632 KB
testcase_02 AC 554 ms
116,688 KB
testcase_03 AC 324 ms
110,732 KB
testcase_04 AC 375 ms
99,772 KB
testcase_05 AC 187 ms
80,128 KB
testcase_06 AC 549 ms
108,416 KB
testcase_07 AC 493 ms
122,496 KB
testcase_08 AC 729 ms
122,332 KB
testcase_09 AC 443 ms
122,592 KB
testcase_10 AC 187 ms
83,992 KB
testcase_11 AC 205 ms
83,840 KB
testcase_12 AC 197 ms
84,096 KB
testcase_13 AC 146 ms
81,152 KB
testcase_14 AC 131 ms
78,592 KB
testcase_15 AC 184 ms
83,840 KB
testcase_16 AC 160 ms
82,816 KB
testcase_17 AC 85 ms
76,928 KB
testcase_18 AC 92 ms
77,184 KB
testcase_19 AC 219 ms
84,608 KB
testcase_20 AC 255 ms
113,408 KB
testcase_21 AC 352 ms
98,816 KB
testcase_22 AC 300 ms
124,544 KB
testcase_23 AC 248 ms
122,624 KB
testcase_24 AC 231 ms
115,584 KB
testcase_25 AC 550 ms
107,392 KB
testcase_26 AC 505 ms
104,576 KB
testcase_27 AC 172 ms
81,408 KB
testcase_28 AC 759 ms
117,760 KB
testcase_29 AC 415 ms
97,664 KB
testcase_30 AC 468 ms
100,352 KB
testcase_31 AC 399 ms
130,816 KB
testcase_32 AC 369 ms
117,632 KB
testcase_33 AC 309 ms
109,696 KB
testcase_34 AC 192 ms
95,744 KB
testcase_35 AC 207 ms
90,624 KB
testcase_36 AC 289 ms
92,800 KB
testcase_37 AC 397 ms
104,704 KB
testcase_38 AC 134 ms
79,232 KB
testcase_39 AC 162 ms
82,816 KB
testcase_40 AC 155 ms
82,816 KB
testcase_41 AC 170 ms
87,424 KB
testcase_42 AC 170 ms
87,476 KB
testcase_43 AC 217 ms
108,544 KB
testcase_44 AC 215 ms
108,416 KB
testcase_45 AC 227 ms
108,288 KB
testcase_46 AC 254 ms
109,440 KB
testcase_47 AC 307 ms
114,688 KB
testcase_48 AC 312 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