結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,364 KB
testcase_01 AC 42 ms
54,172 KB
testcase_02 AC 1,010 ms
133,236 KB
testcase_03 AC 515 ms
123,644 KB
testcase_04 AC 667 ms
104,224 KB
testcase_05 AC 284 ms
84,976 KB
testcase_06 AC 1,096 ms
120,528 KB
testcase_07 AC 959 ms
127,192 KB
testcase_08 AC 1,717 ms
129,104 KB
testcase_09 AC 783 ms
129,468 KB
testcase_10 AC 285 ms
105,312 KB
testcase_11 AC 316 ms
105,408 KB
testcase_12 AC 241 ms
105,520 KB
testcase_13 AC 206 ms
90,432 KB
testcase_14 AC 153 ms
89,744 KB
testcase_15 AC 278 ms
100,792 KB
testcase_16 AC 242 ms
104,700 KB
testcase_17 AC 91 ms
77,484 KB
testcase_18 AC 105 ms
77,480 KB
testcase_19 AC 284 ms
99,952 KB
testcase_20 AC 474 ms
125,996 KB
testcase_21 AC 604 ms
116,756 KB
testcase_22 AC 407 ms
144,520 KB
testcase_23 AC 368 ms
130,772 KB
testcase_24 AC 361 ms
133,592 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 460 ms
91,992 KB
testcase_28 AC 1,261 ms
132,624 KB
testcase_29 AC 726 ms
113,720 KB
testcase_30 AC 1,080 ms
120,072 KB
testcase_31 AC 892 ms
146,076 KB
testcase_32 AC 637 ms
129,496 KB
testcase_33 AC 530 ms
119,948 KB
testcase_34 AC 364 ms
100,748 KB
testcase_35 AC 267 ms
100,884 KB
testcase_36 AC 605 ms
106,648 KB
testcase_37 AC 1,071 ms
115,608 KB
testcase_38 AC 188 ms
82,772 KB
testcase_39 AC 238 ms
104,956 KB
testcase_40 AC 238 ms
105,072 KB
testcase_41 AC 281 ms
109,444 KB
testcase_42 AC 233 ms
109,348 KB
testcase_43 AC 322 ms
125,908 KB
testcase_44 AC 346 ms
126,032 KB
testcase_45 AC 344 ms
125,788 KB
testcase_46 AC 404 ms
124,076 KB
testcase_47 AC 541 ms
126,412 KB
testcase_48 AC 715 ms
120,140 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 w <= z and reach[y] == float("Inf"):
                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