結果

問題 No.1473 おでぶなおばけさん
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-04-12 00:27:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,188 ms / 2,000 ms
コード長 668 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 108,416 KB
最終ジャッジ日時 2024-06-27 21:56:14
合計ジャッジ時間 20,476 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,632 KB
testcase_01 AC 42 ms
54,144 KB
testcase_02 AC 636 ms
102,624 KB
testcase_03 AC 394 ms
100,004 KB
testcase_04 AC 428 ms
90,264 KB
testcase_05 AC 186 ms
80,000 KB
testcase_06 AC 663 ms
97,716 KB
testcase_07 AC 543 ms
102,248 KB
testcase_08 AC 927 ms
103,784 KB
testcase_09 AC 520 ms
102,372 KB
testcase_10 AC 179 ms
83,904 KB
testcase_11 AC 188 ms
86,272 KB
testcase_12 AC 182 ms
84,164 KB
testcase_13 AC 136 ms
81,024 KB
testcase_14 AC 112 ms
78,848 KB
testcase_15 AC 169 ms
83,788 KB
testcase_16 AC 173 ms
82,972 KB
testcase_17 AC 85 ms
77,608 KB
testcase_18 AC 92 ms
77,184 KB
testcase_19 AC 233 ms
84,608 KB
testcase_20 AC 328 ms
97,696 KB
testcase_21 AC 333 ms
92,100 KB
testcase_22 AC 298 ms
107,392 KB
testcase_23 AC 264 ms
105,216 KB
testcase_24 AC 245 ms
101,376 KB
testcase_25 AC 1,097 ms
100,756 KB
testcase_26 AC 1,188 ms
100,128 KB
testcase_27 AC 211 ms
81,664 KB
testcase_28 AC 788 ms
103,756 KB
testcase_29 AC 475 ms
93,184 KB
testcase_30 AC 687 ms
94,976 KB
testcase_31 AC 507 ms
108,416 KB
testcase_32 AC 435 ms
99,732 KB
testcase_33 AC 384 ms
95,232 KB
testcase_34 AC 236 ms
87,680 KB
testcase_35 AC 198 ms
86,272 KB
testcase_36 AC 375 ms
89,076 KB
testcase_37 AC 572 ms
95,356 KB
testcase_38 AC 131 ms
79,084 KB
testcase_39 AC 173 ms
82,944 KB
testcase_40 AC 169 ms
82,944 KB
testcase_41 AC 212 ms
87,472 KB
testcase_42 AC 160 ms
87,860 KB
testcase_43 AC 211 ms
96,256 KB
testcase_44 AC 206 ms
96,000 KB
testcase_45 AC 203 ms
96,000 KB
testcase_46 AC 320 ms
95,980 KB
testcase_47 AC 391 ms
98,688 KB
testcase_48 AC 356 ms
98,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n, m = map(int, input().split())
G = [[] for i in range(n)]
for _ in range(m):
    s, t, d = map(int, input().split())
    s -= 1; t -= 1
    G[s].append((t, d))
    G[t].append((s, d))
INF = 10 ** 18
def is_ok(x):
    dist = [INF] * n
    dist[0] = 0
    Q = deque([0])
    while Q:
        p = Q.popleft()
        dc = dist[p] + 1
        for u, d in G[p]:
            if d >= x and dist[u] > dc:
                dist[u] = dc
                Q.append(u)
    return dist[-1]
l, r = 0, 10 ** 9 + 1
while r - l > 1:
    mid = (l + r) // 2
    tmp = is_ok(mid)
    if tmp == INF:
        r = mid
    else:
        l = mid
print(l, is_ok(l))
0