結果

問題 No.1473 おでぶなおばけさん
ユーザー DrDrpilotDrDrpilot
提出日時 2022-05-08 16:18:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 924 ms / 2,000 ms
コード長 697 bytes
コンパイル時間 390 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 131,272 KB
最終ジャッジ日時 2024-07-08 04:39:40
合計ジャッジ時間 22,455 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,888 KB
testcase_01 AC 43 ms
53,376 KB
testcase_02 AC 814 ms
125,524 KB
testcase_03 AC 541 ms
117,760 KB
testcase_04 AC 530 ms
104,064 KB
testcase_05 AC 225 ms
84,736 KB
testcase_06 AC 905 ms
121,576 KB
testcase_07 AC 663 ms
130,120 KB
testcase_08 AC 924 ms
131,272 KB
testcase_09 AC 575 ms
130,232 KB
testcase_10 AC 292 ms
115,248 KB
testcase_11 AC 300 ms
114,856 KB
testcase_12 AC 286 ms
115,360 KB
testcase_13 AC 215 ms
99,328 KB
testcase_14 AC 160 ms
94,976 KB
testcase_15 AC 291 ms
114,312 KB
testcase_16 AC 262 ms
113,168 KB
testcase_17 AC 91 ms
77,808 KB
testcase_18 AC 103 ms
78,592 KB
testcase_19 AC 368 ms
95,744 KB
testcase_20 AC 506 ms
105,648 KB
testcase_21 AC 617 ms
103,828 KB
testcase_22 AC 423 ms
103,956 KB
testcase_23 AC 356 ms
100,096 KB
testcase_24 AC 370 ms
99,200 KB
testcase_25 AC 403 ms
102,828 KB
testcase_26 AC 415 ms
104,276 KB
testcase_27 AC 195 ms
87,424 KB
testcase_28 AC 380 ms
111,552 KB
testcase_29 AC 369 ms
100,908 KB
testcase_30 AC 438 ms
104,276 KB
testcase_31 AC 731 ms
130,768 KB
testcase_32 AC 833 ms
120,804 KB
testcase_33 AC 472 ms
113,024 KB
testcase_34 AC 363 ms
95,104 KB
testcase_35 AC 312 ms
100,224 KB
testcase_36 AC 312 ms
97,024 KB
testcase_37 AC 335 ms
98,176 KB
testcase_38 AC 126 ms
77,824 KB
testcase_39 AC 259 ms
113,468 KB
testcase_40 AC 249 ms
113,604 KB
testcase_41 AC 305 ms
113,544 KB
testcase_42 AC 252 ms
113,448 KB
testcase_43 AC 244 ms
124,060 KB
testcase_44 AC 250 ms
123,800 KB
testcase_45 AC 251 ms
123,560 KB
testcase_46 AC 336 ms
116,992 KB
testcase_47 AC 392 ms
123,648 KB
testcase_48 AC 393 ms
122,368 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()
ng=len(W)
ok=-1
while ng-ok>1:
    mid=(ok+ng)//2
    if bfs(W[mid])!=-1:
        ok=mid
    else:
        ng=mid
print(W[ok],bfs(W[ok]))
0