結果

問題 No.1473 おでぶなおばけさん
ユーザー tktk_snsntktk_snsn
提出日時 2021-04-11 19:13:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 855 ms / 2,000 ms
コード長 760 bytes
コンパイル時間 480 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 111,872 KB
最終ジャッジ日時 2024-06-27 13:49:19
合計ジャッジ時間 15,885 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,760 KB
testcase_01 AC 45 ms
53,504 KB
testcase_02 AC 583 ms
100,736 KB
testcase_03 AC 306 ms
102,912 KB
testcase_04 AC 430 ms
89,472 KB
testcase_05 AC 185 ms
80,128 KB
testcase_06 AC 559 ms
96,256 KB
testcase_07 AC 582 ms
102,016 KB
testcase_08 AC 855 ms
102,784 KB
testcase_09 AC 487 ms
103,552 KB
testcase_10 AC 147 ms
81,920 KB
testcase_11 AC 145 ms
81,664 KB
testcase_12 AC 136 ms
81,792 KB
testcase_13 AC 108 ms
77,824 KB
testcase_14 AC 96 ms
77,696 KB
testcase_15 AC 128 ms
81,536 KB
testcase_16 AC 127 ms
81,920 KB
testcase_17 AC 68 ms
67,456 KB
testcase_18 AC 73 ms
70,016 KB
testcase_19 AC 195 ms
83,840 KB
testcase_20 AC 260 ms
103,552 KB
testcase_21 AC 350 ms
92,032 KB
testcase_22 AC 248 ms
108,672 KB
testcase_23 AC 227 ms
107,008 KB
testcase_24 AC 209 ms
102,400 KB
testcase_25 AC 697 ms
95,872 KB
testcase_26 AC 595 ms
96,128 KB
testcase_27 AC 162 ms
80,768 KB
testcase_28 AC 644 ms
103,936 KB
testcase_29 AC 378 ms
93,312 KB
testcase_30 AC 488 ms
93,952 KB
testcase_31 AC 426 ms
111,872 KB
testcase_32 AC 371 ms
102,144 KB
testcase_33 AC 301 ms
98,688 KB
testcase_34 AC 194 ms
88,832 KB
testcase_35 AC 189 ms
86,144 KB
testcase_36 AC 348 ms
87,936 KB
testcase_37 AC 384 ms
95,488 KB
testcase_38 AC 126 ms
78,336 KB
testcase_39 AC 131 ms
81,536 KB
testcase_40 AC 123 ms
81,792 KB
testcase_41 AC 134 ms
87,808 KB
testcase_42 AC 136 ms
87,680 KB
testcase_43 AC 180 ms
97,536 KB
testcase_44 AC 179 ms
97,536 KB
testcase_45 AC 181 ms
97,536 KB
testcase_46 AC 237 ms
93,312 KB
testcase_47 AC 263 ms
100,864 KB
testcase_48 AC 283 ms
99,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)
inf = 10**18

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(m):
    dist = [inf] * N
    dist[0] = 0
    q = deque([0])
    while q:
        s = q.popleft()
        for t, d in G[s]:
            if m > d:
                continue
            if dist[t] > dist[s] + 1:
                dist[t] = dist[s] + 1
                q.append(t)
    return dist[N-1]


l = 0
r = 10 ** 10
while r - l > 1:
    m = (r + l) // 2
    L = bfs(m)
    if L >= inf:
        r = m
    else:
        l = m

print(l, bfs(l))
0