結果

問題 No.1473 おでぶなおばけさん
ユーザー tktk_snsntktk_snsn
提出日時 2021-04-11 19:13:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 760 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 45,648 KB
最終ジャッジ日時 2024-06-27 13:48:54
合計ジャッジ時間 45,458 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 1,763 ms
42,752 KB
testcase_03 AC 817 ms
38,656 KB
testcase_04 AC 1,181 ms
28,160 KB
testcase_05 AC 407 ms
16,768 KB
testcase_06 AC 1,713 ms
40,320 KB
testcase_07 AC 1,493 ms
45,432 KB
testcase_08 TLE -
testcase_09 AC 1,153 ms
44,916 KB
testcase_10 AC 916 ms
31,744 KB
testcase_11 AC 955 ms
30,208 KB
testcase_12 AC 551 ms
32,128 KB
testcase_13 AC 326 ms
22,528 KB
testcase_14 AC 240 ms
19,328 KB
testcase_15 AC 687 ms
27,392 KB
testcase_16 AC 481 ms
30,336 KB
testcase_17 AC 50 ms
11,904 KB
testcase_18 AC 77 ms
12,672 KB
testcase_19 AC 674 ms
29,312 KB
testcase_20 AC 616 ms
35,328 KB
testcase_21 AC 1,121 ms
36,352 KB
testcase_22 AC 577 ms
36,116 KB
testcase_23 AC 474 ms
32,768 KB
testcase_24 AC 485 ms
32,000 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 642 ms
21,760 KB
testcase_28 AC 1,791 ms
43,620 KB
testcase_29 AC 1,255 ms
34,816 KB
testcase_30 AC 1,689 ms
38,784 KB
testcase_31 AC 1,104 ms
43,008 KB
testcase_32 AC 1,028 ms
41,088 KB
testcase_33 AC 841 ms
34,688 KB
testcase_34 AC 439 ms
23,680 KB
testcase_35 AC 417 ms
25,216 KB
testcase_36 AC 1,399 ms
31,616 KB
testcase_37 AC 1,156 ms
33,664 KB
testcase_38 AC 191 ms
15,360 KB
testcase_39 AC 601 ms
30,720 KB
testcase_40 AC 446 ms
30,848 KB
testcase_41 AC 417 ms
27,904 KB
testcase_42 AC 424 ms
28,160 KB
testcase_43 AC 662 ms
37,700 KB
testcase_44 AC 658 ms
37,572 KB
testcase_45 AC 656 ms
37,444 KB
testcase_46 AC 947 ms
35,632 KB
testcase_47 AC 930 ms
40,980 KB
testcase_48 AC 1,092 ms
38,196 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