結果

問題 No.1473 おでぶなおばけさん
ユーザー roarisroaris
提出日時 2021-04-09 22:36:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 717 ms / 2,000 ms
コード長 739 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 111,872 KB
最終ジャッジ日時 2024-06-25 06:15:22
合計ジャッジ時間 14,927 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,400 KB
testcase_01 AC 40 ms
54,144 KB
testcase_02 AC 522 ms
101,316 KB
testcase_03 AC 289 ms
100,780 KB
testcase_04 AC 338 ms
90,296 KB
testcase_05 AC 172 ms
79,872 KB
testcase_06 AC 527 ms
96,072 KB
testcase_07 AC 448 ms
102,656 KB
testcase_08 AC 717 ms
102,876 KB
testcase_09 AC 472 ms
102,760 KB
testcase_10 AC 134 ms
83,584 KB
testcase_11 AC 133 ms
83,344 KB
testcase_12 AC 122 ms
83,456 KB
testcase_13 AC 98 ms
79,872 KB
testcase_14 AC 88 ms
77,824 KB
testcase_15 AC 120 ms
82,944 KB
testcase_16 AC 112 ms
82,560 KB
testcase_17 AC 60 ms
69,632 KB
testcase_18 AC 66 ms
73,344 KB
testcase_19 AC 190 ms
84,608 KB
testcase_20 AC 233 ms
99,456 KB
testcase_21 AC 311 ms
93,568 KB
testcase_22 AC 259 ms
108,672 KB
testcase_23 AC 217 ms
106,752 KB
testcase_24 AC 209 ms
103,040 KB
testcase_25 AC 695 ms
95,924 KB
testcase_26 AC 500 ms
96,148 KB
testcase_27 AC 166 ms
81,592 KB
testcase_28 AC 633 ms
104,300 KB
testcase_29 AC 350 ms
92,544 KB
testcase_30 AC 458 ms
95,460 KB
testcase_31 AC 429 ms
111,872 KB
testcase_32 AC 357 ms
103,808 KB
testcase_33 AC 280 ms
96,384 KB
testcase_34 AC 187 ms
88,032 KB
testcase_35 AC 170 ms
88,448 KB
testcase_36 AC 302 ms
88,192 KB
testcase_37 AC 384 ms
96,528 KB
testcase_38 AC 105 ms
78,336 KB
testcase_39 AC 121 ms
82,688 KB
testcase_40 AC 112 ms
82,656 KB
testcase_41 AC 122 ms
86,688 KB
testcase_42 AC 124 ms
86,044 KB
testcase_43 AC 164 ms
98,816 KB
testcase_44 AC 160 ms
98,944 KB
testcase_45 AC 164 ms
99,200 KB
testcase_46 AC 254 ms
97,868 KB
testcase_47 AC 271 ms
103,168 KB
testcase_48 AC 291 ms
95,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

def bfs(x):
    dist = [-1]*n
    dist[0] = 0
    q = deque([0])
    
    while q:
        v = q.popleft()
        
        for nv, d in G[v]:
            if x<=d and dist[nv]==-1:
                dist[nv] = dist[v]+1
                q.append(nv)
    
    return dist[-1]

def binary_search():
    l, r = 0, 10**10
    
    while l<=r:
        m = (l+r)//2
        
        if bfs(m)>=0:
            l = m+1
        else:
            r = m-1
    
    return r

n, m = map(int, input().split())
G = [[] for _ in range(n)]

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

w = binary_search()
print(w, bfs(w))
0