結果

問題 No.1473 おでぶなおばけさん
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-19 19:30:15
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 634 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 120,192 KB
最終ジャッジ日時 2024-05-02 19:50:23
合計ジャッジ時間 31,264 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,504 KB
testcase_01 AC 47 ms
53,760 KB
testcase_02 AC 1,027 ms
113,392 KB
testcase_03 AC 689 ms
111,704 KB
testcase_04 AC 852 ms
96,128 KB
testcase_05 AC 304 ms
82,560 KB
testcase_06 AC 1,199 ms
107,672 KB
testcase_07 AC 908 ms
112,536 KB
testcase_08 AC 1,534 ms
113,208 KB
testcase_09 AC 767 ms
113,428 KB
testcase_10 AC 265 ms
97,024 KB
testcase_11 AC 296 ms
96,512 KB
testcase_12 AC 274 ms
96,768 KB
testcase_13 AC 208 ms
86,272 KB
testcase_14 AC 169 ms
81,792 KB
testcase_15 AC 284 ms
91,264 KB
testcase_16 AC 247 ms
94,848 KB
testcase_17 AC 107 ms
77,952 KB
testcase_18 AC 115 ms
77,696 KB
testcase_19 AC 422 ms
92,544 KB
testcase_20 AC 588 ms
107,136 KB
testcase_21 AC 714 ms
103,552 KB
testcase_22 AC 443 ms
115,840 KB
testcase_23 AC 377 ms
114,432 KB
testcase_24 AC 354 ms
109,952 KB
testcase_25 AC 1,944 ms
111,020 KB
testcase_26 TLE -
testcase_27 AC 319 ms
86,528 KB
testcase_28 AC 1,401 ms
113,340 KB
testcase_29 AC 731 ms
103,808 KB
testcase_30 AC 1,101 ms
106,112 KB
testcase_31 AC 821 ms
120,192 KB
testcase_32 AC 684 ms
111,104 KB
testcase_33 AC 515 ms
104,832 KB
testcase_34 AC 360 ms
92,160 KB
testcase_35 AC 331 ms
92,800 KB
testcase_36 AC 703 ms
97,792 KB
testcase_37 AC 1,078 ms
101,680 KB
testcase_38 AC 199 ms
80,384 KB
testcase_39 AC 257 ms
95,232 KB
testcase_40 AC 239 ms
94,976 KB
testcase_41 AC 330 ms
95,972 KB
testcase_42 AC 251 ms
96,392 KB
testcase_43 AC 281 ms
108,160 KB
testcase_44 AC 277 ms
108,288 KB
testcase_45 AC 277 ms
108,544 KB
testcase_46 AC 543 ms
106,112 KB
testcase_47 AC 665 ms
107,136 KB
testcase_48 AC 624 ms
105,728 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(w):
    dst=[-1]*n 
    dst[0]=0
    q=deque()
    q.append(0)
    while q:
        now=q.popleft()
        for to,limit in g[now]:
            if limit<w:
                continue
            if dst[to]!=-1:
                continue
            dst[to]=dst[now]+1
            q.append(to)
    return dst[-1]
l=0
r=10**9+10
while r-l>1:
    mid=(r+l)//2
    if bfs(mid)==-1:
        r=mid
    else:
        l=mid
print(l,bfs(l))
0