結果

問題 No.1473 おでぶなおばけさん
ユーザー gorugo30gorugo30
提出日時 2021-05-08 16:56:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,024 ms / 2,000 ms
コード長 714 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 108,672 KB
最終ジャッジ日時 2024-09-16 22:20:58
合計ジャッジ時間 22,553 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,760 KB
testcase_01 AC 46 ms
53,632 KB
testcase_02 AC 633 ms
101,696 KB
testcase_03 AC 412 ms
102,264 KB
testcase_04 AC 535 ms
90,604 KB
testcase_05 AC 219 ms
80,128 KB
testcase_06 AC 745 ms
97,676 KB
testcase_07 AC 580 ms
103,092 KB
testcase_08 AC 941 ms
103,004 KB
testcase_09 AC 526 ms
103,912 KB
testcase_10 AC 207 ms
83,968 KB
testcase_11 AC 227 ms
83,584 KB
testcase_12 AC 205 ms
84,096 KB
testcase_13 AC 168 ms
81,024 KB
testcase_14 AC 138 ms
78,976 KB
testcase_15 AC 199 ms
83,456 KB
testcase_16 AC 192 ms
82,816 KB
testcase_17 AC 101 ms
77,184 KB
testcase_18 AC 104 ms
76,800 KB
testcase_19 AC 263 ms
84,480 KB
testcase_20 AC 342 ms
97,792 KB
testcase_21 AC 373 ms
91,904 KB
testcase_22 AC 322 ms
107,648 KB
testcase_23 AC 283 ms
105,472 KB
testcase_24 AC 278 ms
101,504 KB
testcase_25 AC 1,024 ms
98,588 KB
testcase_26 AC 1,018 ms
99,100 KB
testcase_27 AC 223 ms
81,920 KB
testcase_28 AC 741 ms
104,068 KB
testcase_29 AC 416 ms
92,416 KB
testcase_30 AC 688 ms
95,104 KB
testcase_31 AC 529 ms
108,672 KB
testcase_32 AC 473 ms
99,456 KB
testcase_33 AC 401 ms
95,104 KB
testcase_34 AC 263 ms
87,552 KB
testcase_35 AC 237 ms
85,888 KB
testcase_36 AC 460 ms
88,704 KB
testcase_37 AC 691 ms
96,592 KB
testcase_38 AC 162 ms
78,592 KB
testcase_39 AC 191 ms
82,944 KB
testcase_40 AC 189 ms
83,072 KB
testcase_41 AC 224 ms
87,140 KB
testcase_42 AC 183 ms
87,268 KB
testcase_43 AC 233 ms
96,256 KB
testcase_44 AC 232 ms
96,384 KB
testcase_45 AC 234 ms
96,256 KB
testcase_46 AC 358 ms
95,872 KB
testcase_47 AC 480 ms
98,560 KB
testcase_48 AC 422 ms
98,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

from collections import deque
def mindist(w):
    qu = deque([0])
    dist = [-1] * N
    dist[0] = 0
    while len(qu):
        v = qu.popleft()
        for nv, d in adj[v]:
            if d < w:
                continue
            if dist[nv] == -1:
                qu.append(nv)
                dist[nv] = dist[v] + 1
    return dist[N - 1]

st = 0
en = 10 ** 9 + 1
while en - st > 1:
    mid = (en + st) // 2
    d = mindist(mid)
    if d == -1:
        en = mid
    else:
        st = mid

print(st, mindist(st))
0