結果

問題 No.1473 おでぶなおばけさん
ユーザー ronpooronpoo
提出日時 2023-10-31 13:54:19
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,044 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 443,264 KB
最終ジャッジ日時 2024-09-25 17:38:06
合計ジャッジ時間 18,128 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,264 KB
testcase_01 AC 45 ms
54,272 KB
testcase_02 AC 476 ms
120,352 KB
testcase_03 AC 346 ms
117,836 KB
testcase_04 AC 256 ms
101,248 KB
testcase_05 AC 161 ms
83,200 KB
testcase_06 AC 503 ms
112,912 KB
testcase_07 AC 440 ms
125,240 KB
testcase_08 AC 541 ms
126,280 KB
testcase_09 AC 372 ms
125,484 KB
testcase_10 AC 209 ms
102,912 KB
testcase_11 AC 251 ms
99,840 KB
testcase_12 AC 207 ms
102,528 KB
testcase_13 AC 147 ms
91,008 KB
testcase_14 AC 122 ms
87,168 KB
testcase_15 AC 185 ms
97,024 KB
testcase_16 AC 200 ms
103,168 KB
testcase_17 AC 91 ms
78,208 KB
testcase_18 AC 100 ms
78,080 KB
testcase_19 AC 278 ms
99,072 KB
testcase_20 AC 328 ms
107,512 KB
testcase_21 AC 471 ms
105,004 KB
testcase_22 AC 491 ms
112,868 KB
testcase_23 AC 542 ms
107,812 KB
testcase_24 AC 522 ms
106,416 KB
testcase_25 AC 399 ms
111,864 KB
testcase_26 AC 248 ms
117,988 KB
testcase_27 AC 155 ms
87,040 KB
testcase_28 AC 329 ms
126,132 KB
testcase_29 AC 282 ms
108,460 KB
testcase_30 AC 321 ms
112,192 KB
testcase_31 AC 381 ms
122,112 KB
testcase_32 AC 452 ms
113,568 KB
testcase_33 AC 254 ms
111,528 KB
testcase_34 AC 166 ms
94,848 KB
testcase_35 AC 223 ms
95,024 KB
testcase_36 AC 439 ms
101,672 KB
testcase_37 AC 251 ms
112,656 KB
testcase_38 AC 86 ms
78,712 KB
testcase_39 AC 194 ms
103,296 KB
testcase_40 AC 193 ms
103,560 KB
testcase_41 AC 168 ms
108,928 KB
testcase_42 AC 170 ms
109,104 KB
testcase_43 AC 236 ms
111,944 KB
testcase_44 AC 236 ms
111,360 KB
testcase_45 AC 239 ms
111,488 KB
testcase_46 TLE -
testcase_47 -- -
testcase_48 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque
input = sys.stdin.readline

n, m = map(int, input().split())
std = [list(map(int, input().split())) for _ in range(m)]

G = [[] for _ in range(n)]
D = []
W = [float('inf')] * (m+2)
for i in range(m):
    s, t, d = std[i]
    s -= 1
    t -= 1
    G[s].append((t, d))
    G[t].append((s, d))
    D.append(d)

def bfs(cost):
    dist = [float('inf')] * n
    dist[0] = 0
    q = deque([0])
    while q:
        now = q.popleft()
        for nxt, d in G[now]:            
            if dist[nxt] < dist[now] + 1:
                continue
            if d < cost:
                continue
            dist[nxt] = dist[now] + 1
            if nxt == n-1:                
                return dist[nxt]
            q.append(nxt)
    return float('inf')

D.append(0)
D.append(float('inf'))
D.sort()
ok = 0
ng = len(D)
while ng - ok > 1:
    mid = (ng + ok) // 2
    W[mid] = bfs(D[mid])
    if W[mid] != float('inf'):
        ok = mid        
    else:
        ng = mid
                
print(D[ok], W[ok])
0