結果

問題 No.1473 おでぶなおばけさん
ユーザー aqua_tenhouaqua_tenhou
提出日時 2021-04-09 22:04:23
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 810 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 146,176 KB
最終ジャッジ日時 2024-06-25 05:33:21
合計ジャッジ時間 32,172 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,760 KB
testcase_01 AC 42 ms
53,888 KB
testcase_02 AC 1,021 ms
134,000 KB
testcase_03 AC 532 ms
122,260 KB
testcase_04 AC 710 ms
103,916 KB
testcase_05 AC 289 ms
84,864 KB
testcase_06 AC 1,238 ms
121,436 KB
testcase_07 AC 1,013 ms
127,184 KB
testcase_08 AC 1,746 ms
128,980 KB
testcase_09 AC 800 ms
129,604 KB
testcase_10 AC 400 ms
105,600 KB
testcase_11 AC 497 ms
105,572 KB
testcase_12 AC 374 ms
105,600 KB
testcase_13 AC 271 ms
96,512 KB
testcase_14 AC 219 ms
90,880 KB
testcase_15 AC 418 ms
103,808 KB
testcase_16 AC 352 ms
104,576 KB
testcase_17 AC 94 ms
77,440 KB
testcase_18 AC 130 ms
80,256 KB
testcase_19 AC 363 ms
100,356 KB
testcase_20 AC 481 ms
124,800 KB
testcase_21 AC 687 ms
116,608 KB
testcase_22 AC 408 ms
144,584 KB
testcase_23 AC 350 ms
133,712 KB
testcase_24 AC 363 ms
133,632 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 480 ms
91,776 KB
testcase_28 AC 1,310 ms
132,632 KB
testcase_29 AC 785 ms
113,664 KB
testcase_30 AC 1,144 ms
121,072 KB
testcase_31 AC 875 ms
146,176 KB
testcase_32 AC 761 ms
129,852 KB
testcase_33 AC 622 ms
119,936 KB
testcase_34 AC 380 ms
100,608 KB
testcase_35 AC 330 ms
99,456 KB
testcase_36 AC 675 ms
106,804 KB
testcase_37 AC 1,072 ms
115,732 KB
testcase_38 AC 178 ms
82,688 KB
testcase_39 AC 372 ms
105,420 KB
testcase_40 AC 341 ms
104,832 KB
testcase_41 AC 440 ms
109,312 KB
testcase_42 AC 422 ms
109,184 KB
testcase_43 AC 394 ms
120,064 KB
testcase_44 AC 402 ms
120,404 KB
testcase_45 AC 397 ms
120,064 KB
testcase_46 AC 367 ms
124,416 KB
testcase_47 AC 490 ms
126,464 KB
testcase_48 AC 606 ms
119,976 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] == float("Inf") 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