結果

問題 No.1473 おでぶなおばけさん
ユーザー ygd.ygd.
提出日時 2021-04-10 16:23:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,092 ms / 2,000 ms
コード長 738 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 125,212 KB
最終ジャッジ日時 2024-06-26 05:35:40
合計ジャッジ時間 19,510 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,272 KB
testcase_01 AC 40 ms
53,788 KB
testcase_02 AC 728 ms
110,400 KB
testcase_03 AC 368 ms
114,044 KB
testcase_04 AC 426 ms
95,688 KB
testcase_05 AC 190 ms
80,384 KB
testcase_06 AC 586 ms
103,944 KB
testcase_07 AC 545 ms
112,636 KB
testcase_08 AC 858 ms
110,844 KB
testcase_09 AC 524 ms
115,200 KB
testcase_10 AC 205 ms
86,472 KB
testcase_11 AC 203 ms
86,152 KB
testcase_12 AC 216 ms
86,816 KB
testcase_13 AC 145 ms
81,216 KB
testcase_14 AC 124 ms
79,116 KB
testcase_15 AC 191 ms
83,540 KB
testcase_16 AC 182 ms
83,176 KB
testcase_17 AC 90 ms
77,488 KB
testcase_18 AC 99 ms
77,196 KB
testcase_19 AC 235 ms
85,080 KB
testcase_20 AC 329 ms
107,136 KB
testcase_21 AC 345 ms
96,796 KB
testcase_22 AC 261 ms
123,264 KB
testcase_23 AC 239 ms
123,436 KB
testcase_24 AC 236 ms
116,284 KB
testcase_25 AC 918 ms
105,260 KB
testcase_26 AC 1,092 ms
104,540 KB
testcase_27 AC 231 ms
81,920 KB
testcase_28 AC 815 ms
110,936 KB
testcase_29 AC 367 ms
97,720 KB
testcase_30 AC 605 ms
98,084 KB
testcase_31 AC 507 ms
125,212 KB
testcase_32 AC 442 ms
108,552 KB
testcase_33 AC 353 ms
102,764 KB
testcase_34 AC 225 ms
92,564 KB
testcase_35 AC 203 ms
88,704 KB
testcase_36 AC 356 ms
91,968 KB
testcase_37 AC 553 ms
104,948 KB
testcase_38 AC 144 ms
79,232 KB
testcase_39 AC 171 ms
83,072 KB
testcase_40 AC 176 ms
83,072 KB
testcase_41 AC 212 ms
87,228 KB
testcase_42 AC 168 ms
87,600 KB
testcase_43 AC 210 ms
102,580 KB
testcase_44 AC 208 ms
102,492 KB
testcase_45 AC 217 ms
102,400 KB
testcase_46 AC 318 ms
104,752 KB
testcase_47 AC 404 ms
108,928 KB
testcase_48 AC 414 ms
109,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n,m = map(int,input().split()); INF = float("inf")
G = [[] for _ in range(n)]
for i 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):
    D = [INF]*n
    D[0] = 0
    Q = deque([])
    Q.append(0)
    while Q:
        v = Q.popleft()
        for u,d in G[v]:
            if d < w: continue
            if D[u] <= D[v] + 1: continue
            D[u] = D[v] + 1
            Q.append(u)
    return D
            
    
ok = 1
ng = pow(10,9) + 1
while abs(ok-ng) > 1:
    mid = (ok+ng)//2
    dis = BFS(mid)
    #print(dis,mid)
    if dis[n-1] < INF:
        ok = mid
    else:
        ng = mid
dis = BFS(ok)
ans = [ok,dis[n-1]]
print(*ans)
0