結果

問題 No.1473 おでぶなおばけさん
ユーザー kohei2019kohei2019
提出日時 2022-05-21 19:25:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 881 ms / 2,000 ms
コード長 1,205 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 208,640 KB
最終ジャッジ日時 2024-09-20 12:05:59
合計ジャッジ時間 22,307 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,504 KB
testcase_01 AC 46 ms
54,016 KB
testcase_02 AC 840 ms
166,272 KB
testcase_03 AC 464 ms
156,288 KB
testcase_04 AC 474 ms
128,512 KB
testcase_05 AC 231 ms
81,280 KB
testcase_06 AC 719 ms
143,872 KB
testcase_07 AC 647 ms
182,400 KB
testcase_08 AC 881 ms
181,888 KB
testcase_09 AC 549 ms
182,272 KB
testcase_10 AC 220 ms
84,352 KB
testcase_11 AC 255 ms
83,968 KB
testcase_12 AC 204 ms
83,968 KB
testcase_13 AC 153 ms
80,896 KB
testcase_14 AC 149 ms
78,976 KB
testcase_15 AC 213 ms
83,712 KB
testcase_16 AC 170 ms
83,200 KB
testcase_17 AC 86 ms
77,440 KB
testcase_18 AC 101 ms
77,184 KB
testcase_19 AC 243 ms
85,120 KB
testcase_20 AC 383 ms
164,224 KB
testcase_21 AC 445 ms
120,960 KB
testcase_22 AC 390 ms
193,664 KB
testcase_23 AC 361 ms
190,848 KB
testcase_24 AC 331 ms
171,904 KB
testcase_25 AC 637 ms
143,872 KB
testcase_26 AC 721 ms
134,528 KB
testcase_27 AC 232 ms
82,176 KB
testcase_28 AC 804 ms
168,576 KB
testcase_29 AC 468 ms
124,416 KB
testcase_30 AC 554 ms
122,496 KB
testcase_31 AC 586 ms
208,640 KB
testcase_32 AC 524 ms
171,520 KB
testcase_33 AC 421 ms
153,984 KB
testcase_34 AC 261 ms
123,392 KB
testcase_35 AC 252 ms
106,752 KB
testcase_36 AC 391 ms
106,880 KB
testcase_37 AC 550 ms
138,496 KB
testcase_38 AC 145 ms
79,104 KB
testcase_39 AC 179 ms
83,328 KB
testcase_40 AC 175 ms
82,944 KB
testcase_41 AC 209 ms
87,476 KB
testcase_42 AC 219 ms
87,456 KB
testcase_43 AC 310 ms
142,592 KB
testcase_44 AC 302 ms
142,976 KB
testcase_45 AC 302 ms
142,592 KB
testcase_46 AC 364 ms
154,880 KB
testcase_47 AC 406 ms
167,680 KB
testcase_48 AC 448 ms
168,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
N,M = map(int,input().split())
lsg = [[] for i in range(N)]
for i in range(M):
    s,t,d = map(int,input().split())
    s -= 1
    t -= 1
    lsg[s].append((t,d))
    lsg[t].append((s,d))
INF = float('INF')
def is_ok(arg):
    d = collections.deque([0])
    used = [False]*(N)
    cost = [INF]*N
    cost[0] = 0
    while d:
        x = d.popleft()
        if used[x]:
            continue
        used[x] = True
        for y,c in lsg[x]:
            if used[y]:
                continue
            if (cost[y] > cost[x] + 1) and (arg <= c):
                cost[y] = cost[x] + 1
                d.append(y)
    return used[N-1]
 
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
w = meguru_bisect(10**18+1,0)
d = collections.deque([0])
used = [False]*(N)
cost = [INF]*N
cost[0] = 0
while d:
    x = d.popleft()
    if used[x]:
        continue
    used[x] = True
    for y,c in lsg[x]:
        if used[y]:
            continue
        if (cost[y] > cost[x] + 1) and (w <= c):
            cost[y] = cost[x] + 1
            d.append(y)

print(w,cost[N-1])
0