結果

問題 No.1473 おでぶなおばけさん
ユーザー FromBooskaFromBooska
提出日時 2023-02-14 20:46:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,437 ms / 2,000 ms
コード長 985 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 275,344 KB
最終ジャッジ日時 2024-07-17 08:52:42
合計ジャッジ時間 26,711 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,344 KB
testcase_01 AC 42 ms
54,268 KB
testcase_02 AC 1,062 ms
229,108 KB
testcase_03 AC 697 ms
170,976 KB
testcase_04 AC 661 ms
138,952 KB
testcase_05 AC 200 ms
85,128 KB
testcase_06 AC 817 ms
172,168 KB
testcase_07 AC 1,437 ms
270,096 KB
testcase_08 AC 1,412 ms
275,344 KB
testcase_09 AC 1,138 ms
250,268 KB
testcase_10 AC 219 ms
89,584 KB
testcase_11 AC 193 ms
89,596 KB
testcase_12 AC 220 ms
89,392 KB
testcase_13 AC 148 ms
85,716 KB
testcase_14 AC 132 ms
82,092 KB
testcase_15 AC 203 ms
89,192 KB
testcase_16 AC 202 ms
89,580 KB
testcase_17 AC 91 ms
77,608 KB
testcase_18 AC 98 ms
77,692 KB
testcase_19 AC 206 ms
88,312 KB
testcase_20 AC 418 ms
121,392 KB
testcase_21 AC 329 ms
101,768 KB
testcase_22 AC 280 ms
108,640 KB
testcase_23 AC 252 ms
105,852 KB
testcase_24 AC 231 ms
104,020 KB
testcase_25 AC 1,042 ms
202,620 KB
testcase_26 AC 1,198 ms
202,896 KB
testcase_27 AC 328 ms
92,780 KB
testcase_28 AC 1,113 ms
220,888 KB
testcase_29 AC 459 ms
115,392 KB
testcase_30 AC 665 ms
146,200 KB
testcase_31 AC 797 ms
188,984 KB
testcase_32 AC 483 ms
135,184 KB
testcase_33 AC 478 ms
129,052 KB
testcase_34 AC 281 ms
95,308 KB
testcase_35 AC 218 ms
92,604 KB
testcase_36 AC 475 ms
111,764 KB
testcase_37 AC 708 ms
150,520 KB
testcase_38 AC 143 ms
80,596 KB
testcase_39 AC 194 ms
89,420 KB
testcase_40 AC 218 ms
89,580 KB
testcase_41 AC 202 ms
94,192 KB
testcase_42 AC 171 ms
94,200 KB
testcase_43 AC 350 ms
151,548 KB
testcase_44 AC 341 ms
151,480 KB
testcase_45 AC 344 ms
151,472 KB
testcase_46 AC 518 ms
146,912 KB
testcase_47 AC 820 ms
181,076 KB
testcase_48 AC 737 ms
187,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 体重決め打ちで二分探索、BFSでどうか

N, M = map(int, input().split())
edge_list = []
for i in range(M):
    s, t, d = map(int, input().split())
    edge_list.append((s, t, d))

from collections import deque
INF = 10**10

def BFS(weight):
    edges = [[] for i in range(N+1)]
    for s, t, d in edge_list:
        if d >= weight:
            edges[s].append(t)
            edges[t].append(s)
            
    que = deque()
    que.append(1)
    distance = [INF]*(N+1)
    distance[1] = 0
    while que:
        current = que.popleft()
        for nxt in edges[current]:
            if distance[nxt] > distance[current]+1:
                distance[nxt] = distance[current]+1
                que.append(nxt)
    #print(distance)
    return distance[N]
            
#for w in range(1, 5):
#    print(w, BFS(w))

OK = 0
NG = 10**9+1
while NG-OK>1:
    mid = (NG+OK)//2
    if BFS(mid) == INF:
        NG = mid
    else:
        OK = mid
print(OK, BFS(OK))
    
    
    

0