結果

問題 No.1473 おでぶなおばけさん
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-19 19:35:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 893 ms / 2,000 ms
コード長 686 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 131,152 KB
最終ジャッジ日時 2024-05-02 19:52:13
合計ジャッジ時間 21,404 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,376 KB
testcase_01 AC 46 ms
53,376 KB
testcase_02 AC 826 ms
125,904 KB
testcase_03 AC 541 ms
117,888 KB
testcase_04 AC 531 ms
104,448 KB
testcase_05 AC 219 ms
85,120 KB
testcase_06 AC 893 ms
121,588 KB
testcase_07 AC 635 ms
130,368 KB
testcase_08 AC 890 ms
131,152 KB
testcase_09 AC 669 ms
130,248 KB
testcase_10 AC 308 ms
115,496 KB
testcase_11 AC 319 ms
115,244 KB
testcase_12 AC 304 ms
115,364 KB
testcase_13 AC 223 ms
99,584 KB
testcase_14 AC 178 ms
94,976 KB
testcase_15 AC 304 ms
114,308 KB
testcase_16 AC 268 ms
113,176 KB
testcase_17 AC 99 ms
77,824 KB
testcase_18 AC 110 ms
78,336 KB
testcase_19 AC 385 ms
95,616 KB
testcase_20 AC 532 ms
106,292 KB
testcase_21 AC 617 ms
103,696 KB
testcase_22 AC 349 ms
103,680 KB
testcase_23 AC 293 ms
99,712 KB
testcase_24 AC 298 ms
97,664 KB
testcase_25 AC 329 ms
102,784 KB
testcase_26 AC 339 ms
102,236 KB
testcase_27 AC 167 ms
83,840 KB
testcase_28 AC 434 ms
111,420 KB
testcase_29 AC 376 ms
101,028 KB
testcase_30 AC 428 ms
104,532 KB
testcase_31 AC 649 ms
130,764 KB
testcase_32 AC 830 ms
121,188 KB
testcase_33 AC 475 ms
113,024 KB
testcase_34 AC 333 ms
95,488 KB
testcase_35 AC 303 ms
100,352 KB
testcase_36 AC 274 ms
94,592 KB
testcase_37 AC 294 ms
98,048 KB
testcase_38 AC 124 ms
78,208 KB
testcase_39 AC 273 ms
113,840 KB
testcase_40 AC 262 ms
113,720 KB
testcase_41 AC 304 ms
113,416 KB
testcase_42 AC 265 ms
113,456 KB
testcase_43 AC 319 ms
119,836 KB
testcase_44 AC 320 ms
119,956 KB
testcase_45 AC 328 ms
119,960 KB
testcase_46 AC 307 ms
116,608 KB
testcase_47 AC 364 ms
124,032 KB
testcase_48 AC 400 ms
122,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n,m=map(int,input().split())
g=[[] for _ in range(n)]
W=[]
for _ in range(m):
    s,t,d=map(int,input().split())
    s-=1;t-=1
    W.append(d)
    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]
W=list(set(W))
W.sort()
r=len(W)
l=0
while r-l>1:
    mid=(r+l)//2
    if bfs(W[mid])==-1:
        r=mid
    else:
        l=mid
print(W[l],bfs(W[l]))
0