結果

問題 No.1473 おでぶなおばけさん
ユーザー aqua_tenhouaqua_tenhou
提出日時 2022-01-04 19:17:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 832 ms / 2,000 ms
コード長 888 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 139,036 KB
最終ジャッジ日時 2024-10-14 15:01:30
合計ジャッジ時間 20,500 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,760 KB
testcase_01 AC 42 ms
53,504 KB
testcase_02 AC 816 ms
132,736 KB
testcase_03 AC 483 ms
126,592 KB
testcase_04 AC 484 ms
109,952 KB
testcase_05 AC 212 ms
87,424 KB
testcase_06 AC 786 ms
127,060 KB
testcase_07 AC 621 ms
138,760 KB
testcase_08 AC 832 ms
138,784 KB
testcase_09 AC 550 ms
139,036 KB
testcase_10 AC 302 ms
109,624 KB
testcase_11 AC 330 ms
120,356 KB
testcase_12 AC 298 ms
109,992 KB
testcase_13 AC 205 ms
99,344 KB
testcase_14 AC 172 ms
93,912 KB
testcase_15 AC 270 ms
110,208 KB
testcase_16 AC 267 ms
110,332 KB
testcase_17 AC 92 ms
77,184 KB
testcase_18 AC 104 ms
77,824 KB
testcase_19 AC 337 ms
99,712 KB
testcase_20 AC 466 ms
109,440 KB
testcase_21 AC 624 ms
109,568 KB
testcase_22 AC 369 ms
110,696 KB
testcase_23 AC 319 ms
106,536 KB
testcase_24 AC 327 ms
105,272 KB
testcase_25 AC 352 ms
109,440 KB
testcase_26 AC 377 ms
111,328 KB
testcase_27 AC 175 ms
90,284 KB
testcase_28 AC 355 ms
118,036 KB
testcase_29 AC 338 ms
106,552 KB
testcase_30 AC 398 ms
112,236 KB
testcase_31 AC 674 ms
134,548 KB
testcase_32 AC 793 ms
128,424 KB
testcase_33 AC 523 ms
119,792 KB
testcase_34 AC 345 ms
99,008 KB
testcase_35 AC 300 ms
106,000 KB
testcase_36 AC 274 ms
98,840 KB
testcase_37 AC 314 ms
104,252 KB
testcase_38 AC 128 ms
81,688 KB
testcase_39 AC 284 ms
109,764 KB
testcase_40 AC 290 ms
109,636 KB
testcase_41 AC 265 ms
116,640 KB
testcase_42 AC 262 ms
116,660 KB
testcase_43 AC 341 ms
130,148 KB
testcase_44 AC 337 ms
130,260 KB
testcase_45 AC 337 ms
130,200 KB
testcase_46 AC 275 ms
116,964 KB
testcase_47 AC 327 ms
128,920 KB
testcase_48 AC 344 ms
128,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

def is_ok(arg):
    p = l[arg]
    w = BWS(p)
    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)]
se = set([])
for s,t,d in z:
    V[s].append([t,d])
    V[t].append([s,d])
    se.add(d)

l = list(se)
l = [0] + sorted(l) + [10**18]
M = len(l)
ans = meguru_bisect(M, 0)
print(l[ans], BWS(l[ans]))
0