結果

問題 No.1473 おでぶなおばけさん
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-19 19:30:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,950 ms / 2,000 ms
コード長 634 bytes
コンパイル時間 838 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 120,192 KB
最終ジャッジ日時 2024-11-23 13:55:22
合計ジャッジ時間 30,018 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
53,376 KB
testcase_01 AC 46 ms
53,760 KB
testcase_02 AC 903 ms
113,516 KB
testcase_03 AC 620 ms
111,752 KB
testcase_04 AC 836 ms
96,000 KB
testcase_05 AC 298 ms
82,688 KB
testcase_06 AC 1,166 ms
107,792 KB
testcase_07 AC 884 ms
112,916 KB
testcase_08 AC 1,432 ms
113,724 KB
testcase_09 AC 753 ms
113,696 KB
testcase_10 AC 273 ms
96,896 KB
testcase_11 AC 302 ms
96,640 KB
testcase_12 AC 266 ms
96,768 KB
testcase_13 AC 216 ms
86,272 KB
testcase_14 AC 165 ms
82,176 KB
testcase_15 AC 278 ms
91,136 KB
testcase_16 AC 246 ms
94,848 KB
testcase_17 AC 107 ms
78,080 KB
testcase_18 AC 115 ms
77,824 KB
testcase_19 AC 396 ms
92,672 KB
testcase_20 AC 490 ms
107,264 KB
testcase_21 AC 608 ms
103,424 KB
testcase_22 AC 407 ms
116,096 KB
testcase_23 AC 364 ms
114,688 KB
testcase_24 AC 347 ms
110,208 KB
testcase_25 AC 1,945 ms
110,632 KB
testcase_26 AC 1,950 ms
109,872 KB
testcase_27 AC 344 ms
86,784 KB
testcase_28 AC 1,425 ms
113,476 KB
testcase_29 AC 723 ms
103,936 KB
testcase_30 AC 1,087 ms
106,240 KB
testcase_31 AC 753 ms
120,192 KB
testcase_32 AC 693 ms
110,976 KB
testcase_33 AC 546 ms
104,960 KB
testcase_34 AC 397 ms
92,032 KB
testcase_35 AC 327 ms
93,312 KB
testcase_36 AC 684 ms
98,048 KB
testcase_37 AC 911 ms
101,800 KB
testcase_38 AC 180 ms
80,768 KB
testcase_39 AC 235 ms
94,976 KB
testcase_40 AC 238 ms
95,104 KB
testcase_41 AC 311 ms
96,264 KB
testcase_42 AC 246 ms
96,256 KB
testcase_43 AC 280 ms
108,672 KB
testcase_44 AC 283 ms
108,288 KB
testcase_45 AC 283 ms
108,288 KB
testcase_46 AC 552 ms
106,112 KB
testcase_47 AC 699 ms
107,520 KB
testcase_48 AC 658 ms
105,856 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