結果

問題 No.1473 おでぶなおばけさん
ユーザー convexineqconvexineq
提出日時 2021-04-09 21:51:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 832 ms / 2,000 ms
コード長 696 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 81,912 KB
実行使用メモリ 108,500 KB
最終ジャッジ日時 2024-06-25 05:09:12
合計ジャッジ時間 16,870 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,500 KB
testcase_01 AC 42 ms
54,640 KB
testcase_02 AC 448 ms
103,776 KB
testcase_03 AC 324 ms
102,300 KB
testcase_04 AC 338 ms
90,996 KB
testcase_05 AC 169 ms
80,164 KB
testcase_06 AC 496 ms
97,968 KB
testcase_07 AC 429 ms
103,148 KB
testcase_08 AC 660 ms
101,872 KB
testcase_09 AC 390 ms
104,176 KB
testcase_10 AC 204 ms
84,200 KB
testcase_11 AC 203 ms
84,372 KB
testcase_12 AC 190 ms
84,440 KB
testcase_13 AC 136 ms
81,112 KB
testcase_14 AC 120 ms
79,008 KB
testcase_15 AC 177 ms
83,752 KB
testcase_16 AC 163 ms
83,036 KB
testcase_17 AC 85 ms
77,520 KB
testcase_18 AC 96 ms
77,552 KB
testcase_19 AC 218 ms
84,736 KB
testcase_20 AC 291 ms
98,068 KB
testcase_21 AC 333 ms
91,908 KB
testcase_22 AC 226 ms
106,232 KB
testcase_23 AC 212 ms
105,332 KB
testcase_24 AC 193 ms
101,428 KB
testcase_25 AC 784 ms
98,376 KB
testcase_26 AC 832 ms
97,676 KB
testcase_27 AC 198 ms
81,308 KB
testcase_28 AC 629 ms
102,724 KB
testcase_29 AC 366 ms
92,728 KB
testcase_30 AC 546 ms
95,444 KB
testcase_31 AC 437 ms
108,500 KB
testcase_32 AC 393 ms
99,364 KB
testcase_33 AC 321 ms
95,572 KB
testcase_34 AC 215 ms
87,512 KB
testcase_35 AC 196 ms
85,780 KB
testcase_36 AC 323 ms
89,084 KB
testcase_37 AC 475 ms
96,836 KB
testcase_38 AC 128 ms
78,988 KB
testcase_39 AC 174 ms
83,352 KB
testcase_40 AC 172 ms
83,304 KB
testcase_41 AC 160 ms
87,352 KB
testcase_42 AC 156 ms
87,352 KB
testcase_43 AC 201 ms
96,764 KB
testcase_44 AC 201 ms
96,716 KB
testcase_45 AC 200 ms
96,688 KB
testcase_46 AC 268 ms
95,916 KB
testcase_47 AC 315 ms
98,912 KB
testcase_48 AC 318 ms
98,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
def check(x):
    dist = [-1]*n
    dist[0] = 0
    q = deque([0])
    while q:
        v = q.popleft()
        for b,w in g[v]:
            if dist[b] == -1 and x <= w:
                dist[b] = dist[v] + 1
                q.append(b)
    if dist[-1] == -1:
        return False,-1
    else:
        return True, dist[-1]

n,m = map(int,input().split())
g = [[] for _ in range(n)]
for _ in range(m):
    a,b,w = map(int,input().split())
    g[a-1].append((b-1,w))
    g[b-1].append((a-1,w))

ok = 0
ng = 10**9+1
val = -1
while ng-ok > 1:
    mid = (ok+ng)//2
    tf,v = check(mid)
    if tf:
        ok = mid
        val = v
    else:
        ng = mid
print(ok,val)
0