結果

問題 No.1473 おでぶなおばけさん
ユーザー ronpooronpoo
提出日時 2023-10-31 13:52:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,044 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 66,644 KB
最終ジャッジ日時 2024-09-25 17:37:46
合計ジャッジ時間 37,982 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
16,512 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 1,166 ms
63,288 KB
testcase_03 AC 803 ms
56,808 KB
testcase_04 AC 566 ms
39,604 KB
testcase_05 AC 227 ms
21,248 KB
testcase_06 AC 1,277 ms
60,356 KB
testcase_07 AC 1,121 ms
66,644 KB
testcase_08 AC 1,430 ms
66,504 KB
testcase_09 AC 859 ms
65,616 KB
testcase_10 AC 539 ms
49,980 KB
testcase_11 AC 1,036 ms
47,420 KB
testcase_12 AC 538 ms
51,072 KB
testcase_13 AC 305 ms
33,280 KB
testcase_14 AC 213 ms
27,008 KB
testcase_15 AC 511 ms
41,700 KB
testcase_16 AC 503 ms
48,384 KB
testcase_17 AC 57 ms
13,184 KB
testcase_18 AC 80 ms
14,592 KB
testcase_19 AC 769 ms
45,312 KB
testcase_20 AC 835 ms
51,492 KB
testcase_21 AC 1,694 ms
56,772 KB
testcase_22 AC 1,388 ms
55,332 KB
testcase_23 AC 1,406 ms
48,768 KB
testcase_24 AC 1,273 ms
48,284 KB
testcase_25 AC 1,147 ms
57,216 KB
testcase_26 AC 591 ms
59,648 KB
testcase_27 AC 273 ms
31,488 KB
testcase_28 AC 730 ms
64,116 KB
testcase_29 AC 663 ms
52,860 KB
testcase_30 AC 806 ms
59,776 KB
testcase_31 AC 882 ms
63,744 KB
testcase_32 AC 1,209 ms
62,208 KB
testcase_33 AC 565 ms
51,456 KB
testcase_34 AC 239 ms
32,128 KB
testcase_35 AC 428 ms
36,608 KB
testcase_36 AC 1,826 ms
48,512 KB
testcase_37 AC 556 ms
48,640 KB
testcase_38 AC 96 ms
19,200 KB
testcase_39 AC 469 ms
49,000 KB
testcase_40 AC 527 ms
49,124 KB
testcase_41 AC 420 ms
43,584 KB
testcase_42 AC 409 ms
43,388 KB
testcase_43 AC 749 ms
57,452 KB
testcase_44 AC 746 ms
57,324 KB
testcase_45 AC 744 ms
57,452 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