結果

問題 No.1473 おでぶなおばけさん
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-19 19:33:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 666 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 116,488 KB
最終ジャッジ日時 2024-05-02 19:50:51
合計ジャッジ時間 21,814 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,504 KB
testcase_01 AC 43 ms
53,888 KB
testcase_02 AC 753 ms
113,280 KB
testcase_03 AC 376 ms
109,656 KB
testcase_04 AC 341 ms
96,864 KB
testcase_05 AC 185 ms
82,944 KB
testcase_06 AC 538 ms
110,188 KB
testcase_07 AC 476 ms
114,760 KB
testcase_08 AC 721 ms
115,152 KB
testcase_09 AC 522 ms
115,272 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 393 ms
106,128 KB
testcase_21 WA -
testcase_22 AC 996 ms
109,592 KB
testcase_23 AC 861 ms
105,076 KB
testcase_24 AC 735 ms
102,704 KB
testcase_25 AC 935 ms
108,460 KB
testcase_26 AC 981 ms
109,144 KB
testcase_27 AC 211 ms
87,552 KB
testcase_28 AC 444 ms
116,488 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 487 ms
114,892 KB
testcase_32 AC 483 ms
110,820 KB
testcase_33 AC 387 ms
106,240 KB
testcase_34 AC 250 ms
91,392 KB
testcase_35 WA -
testcase_36 AC 516 ms
98,560 KB
testcase_37 AC 711 ms
101,736 KB
testcase_38 AC 150 ms
81,152 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 257 ms
106,396 KB
testcase_44 AC 258 ms
106,396 KB
testcase_45 AC 267 ms
106,388 KB
testcase_46 AC 246 ms
104,320 KB
testcase_47 AC 290 ms
109,824 KB
testcase_48 AC 306 ms
108,928 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.sort()
r=n
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