結果

問題 No.1473 おでぶなおばけさん
ユーザー aqua_tenhouaqua_tenhou
提出日時 2022-01-04 19:08:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,587 ms / 2,000 ms
コード長 795 bytes
コンパイル時間 1,196 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 129,560 KB
最終ジャッジ日時 2024-10-14 14:51:40
合計ジャッジ時間 30,537 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,012 KB
testcase_01 AC 42 ms
53,960 KB
testcase_02 AC 1,023 ms
124,012 KB
testcase_03 AC 597 ms
118,912 KB
testcase_04 AC 815 ms
101,536 KB
testcase_05 AC 240 ms
84,484 KB
testcase_06 AC 1,178 ms
118,064 KB
testcase_07 AC 887 ms
123,676 KB
testcase_08 AC 1,464 ms
123,676 KB
testcase_09 AC 846 ms
125,484 KB
testcase_10 AC 298 ms
95,156 KB
testcase_11 AC 352 ms
95,136 KB
testcase_12 AC 284 ms
95,464 KB
testcase_13 AC 194 ms
90,184 KB
testcase_14 AC 167 ms
89,240 KB
testcase_15 AC 282 ms
100,744 KB
testcase_16 AC 258 ms
96,564 KB
testcase_17 AC 90 ms
77,276 KB
testcase_18 AC 106 ms
77,312 KB
testcase_19 AC 339 ms
99,464 KB
testcase_20 AC 503 ms
116,068 KB
testcase_21 AC 671 ms
112,180 KB
testcase_22 AC 381 ms
126,568 KB
testcase_23 AC 357 ms
115,528 KB
testcase_24 AC 328 ms
116,792 KB
testcase_25 AC 1,587 ms
117,160 KB
testcase_26 AC 1,549 ms
119,480 KB
testcase_27 AC 374 ms
91,004 KB
testcase_28 AC 1,086 ms
124,708 KB
testcase_29 AC 693 ms
112,060 KB
testcase_30 AC 1,004 ms
115,724 KB
testcase_31 AC 848 ms
129,560 KB
testcase_32 AC 736 ms
120,596 KB
testcase_33 AC 585 ms
113,196 KB
testcase_34 AC 372 ms
96,032 KB
testcase_35 AC 291 ms
97,764 KB
testcase_36 AC 502 ms
105,968 KB
testcase_37 AC 880 ms
110,876 KB
testcase_38 AC 155 ms
82,016 KB
testcase_39 AC 268 ms
95,752 KB
testcase_40 AC 262 ms
95,556 KB
testcase_41 AC 255 ms
109,168 KB
testcase_42 AC 254 ms
109,344 KB
testcase_43 AC 300 ms
119,600 KB
testcase_44 AC 300 ms
119,916 KB
testcase_45 AC 301 ms
119,960 KB
testcase_46 AC 322 ms
114,452 KB
testcase_47 AC 428 ms
119,472 KB
testcase_48 AC 569 ms
114,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

def is_ok(arg):
    w = BWS(arg)
    return w != 10**18

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 = [10**18]*(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