結果

問題 No.1473 おでぶなおばけさん
ユーザー flippergoflippergo
提出日時 2024-11-04 09:04:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,517 ms / 2,000 ms
コード長 603 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 111,964 KB
最終ジャッジ日時 2024-11-04 09:04:57
合計ジャッジ時間 23,757 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,368 KB
testcase_01 AC 40 ms
53,788 KB
testcase_02 AC 739 ms
107,912 KB
testcase_03 AC 479 ms
105,844 KB
testcase_04 AC 579 ms
93,440 KB
testcase_05 AC 197 ms
80,868 KB
testcase_06 AC 853 ms
103,072 KB
testcase_07 AC 738 ms
107,984 KB
testcase_08 AC 1,204 ms
103,244 KB
testcase_09 AC 609 ms
104,668 KB
testcase_10 AC 227 ms
83,932 KB
testcase_11 AC 248 ms
83,784 KB
testcase_12 AC 213 ms
84,248 KB
testcase_13 AC 151 ms
81,324 KB
testcase_14 AC 139 ms
78,940 KB
testcase_15 AC 211 ms
83,824 KB
testcase_16 AC 177 ms
83,308 KB
testcase_17 AC 90 ms
77,492 KB
testcase_18 AC 96 ms
77,348 KB
testcase_19 AC 258 ms
85,140 KB
testcase_20 AC 408 ms
100,432 KB
testcase_21 AC 449 ms
93,348 KB
testcase_22 AC 320 ms
108,324 KB
testcase_23 AC 262 ms
106,792 KB
testcase_24 AC 253 ms
102,048 KB
testcase_25 AC 1,517 ms
98,276 KB
testcase_26 AC 1,495 ms
98,812 KB
testcase_27 AC 233 ms
82,076 KB
testcase_28 AC 1,073 ms
104,356 KB
testcase_29 AC 502 ms
94,348 KB
testcase_30 AC 790 ms
98,272 KB
testcase_31 AC 573 ms
111,964 KB
testcase_32 AC 527 ms
102,424 KB
testcase_33 AC 423 ms
97,868 KB
testcase_34 AC 264 ms
88,528 KB
testcase_35 AC 232 ms
86,592 KB
testcase_36 AC 444 ms
90,840 KB
testcase_37 AC 657 ms
98,560 KB
testcase_38 AC 144 ms
79,200 KB
testcase_39 AC 188 ms
83,312 KB
testcase_40 AC 181 ms
83,348 KB
testcase_41 AC 184 ms
87,356 KB
testcase_42 AC 187 ms
87,740 KB
testcase_43 AC 232 ms
98,424 KB
testcase_44 AC 232 ms
98,292 KB
testcase_45 AC 230 ms
98,780 KB
testcase_46 AC 350 ms
97,856 KB
testcase_47 AC 458 ms
101,912 KB
testcase_48 AC 456 ms
100,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N,M = map(int,input().split())
G = {i:[] for i in range(1,N+1)}
for _ in range(M):
    s,t,d = map(int,input().split())
    G[s].append((t,d))
    G[t].append((s,d))
high = 10**9+10
low = 0
ans = -1
while high-low>1:
    mid = (high+low)//2
    dist = [-1]*(N+1)
    dist[1] = 0
    que = deque([1])
    while que:
        x = que.popleft()
        for y,d in G[x]:
            if dist[y]==-1 and mid<=d:
                dist[y] = dist[x]+1
                que.append(y)
    if dist[N]>=0:
        ans = dist[N]
        low = mid
    else:
        high = mid
print(low,ans)
0