結果

問題 No.1473 おでぶなおばけさん
ユーザー aqua_tenhouaqua_tenhou
提出日時 2021-04-09 22:08:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,281 ms / 2,000 ms
コード長 808 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 145,832 KB
最終ジャッジ日時 2024-06-25 05:41:34
合計ジャッジ時間 23,349 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,272 KB
testcase_01 AC 39 ms
54,272 KB
testcase_02 AC 834 ms
130,688 KB
testcase_03 AC 456 ms
129,268 KB
testcase_04 AC 545 ms
104,628 KB
testcase_05 AC 221 ms
84,612 KB
testcase_06 AC 870 ms
122,424 KB
testcase_07 AC 684 ms
130,984 KB
testcase_08 AC 1,134 ms
127,272 KB
testcase_09 AC 707 ms
135,580 KB
testcase_10 AC 270 ms
95,616 KB
testcase_11 AC 311 ms
95,492 KB
testcase_12 AC 257 ms
95,744 KB
testcase_13 AC 184 ms
90,752 KB
testcase_14 AC 154 ms
89,472 KB
testcase_15 AC 259 ms
100,656 KB
testcase_16 AC 234 ms
96,896 KB
testcase_17 AC 88 ms
77,524 KB
testcase_18 AC 101 ms
77,464 KB
testcase_19 AC 275 ms
99,476 KB
testcase_20 AC 404 ms
128,344 KB
testcase_21 AC 520 ms
116,980 KB
testcase_22 AC 346 ms
144,616 KB
testcase_23 AC 323 ms
133,652 KB
testcase_24 AC 304 ms
131,652 KB
testcase_25 AC 1,265 ms
119,440 KB
testcase_26 AC 1,281 ms
121,928 KB
testcase_27 AC 312 ms
91,116 KB
testcase_28 AC 902 ms
129,580 KB
testcase_29 AC 539 ms
117,580 KB
testcase_30 AC 779 ms
120,448 KB
testcase_31 AC 730 ms
145,832 KB
testcase_32 AC 599 ms
129,792 KB
testcase_33 AC 501 ms
121,984 KB
testcase_34 AC 300 ms
100,864 KB
testcase_35 AC 256 ms
101,504 KB
testcase_36 AC 407 ms
109,748 KB
testcase_37 AC 703 ms
115,240 KB
testcase_38 AC 142 ms
82,432 KB
testcase_39 AC 234 ms
95,924 KB
testcase_40 AC 234 ms
95,944 KB
testcase_41 AC 232 ms
109,552 KB
testcase_42 AC 232 ms
109,416 KB
testcase_43 AC 286 ms
126,088 KB
testcase_44 AC 284 ms
125,952 KB
testcase_45 AC 288 ms
126,052 KB
testcase_46 AC 295 ms
126,336 KB
testcase_47 AC 363 ms
130,956 KB
testcase_48 AC 445 ms
122,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

def is_ok(arg):
    w = BWS(arg)
    return w != float("Inf")


def meguru_bisect(ng, ok):
    while (abs(ok - ng) > 1):
        mid = (ok + ng) // 2
        if is_ok(mid):
            ok = mid
        else:
            ng = mid
    return ok

def BWS(w):
    q = deque([])
    reach = [float("Inf")]*(n+1)

    q.append(1)
    reach[1] = 0
    while q:
        x = q.popleft()
        for y,z in V[x]:
            if reach[y] > reach[x] + 1 and w <= z:
                q.append(y)
                reach[y] = reach[x] + 1
    return reach[-1]

n,m = map(int,input().split())
z = [list(map(int,input().split())) for i in range(m)]
V = [[] for i in range(n+1)]
for s,t,d in z:
    V[s].append([t,d])
    V[t].append([s,d])

ans = meguru_bisect(10**9 + 1, 0)
print(ans, BWS(ans))
0