結果

問題 No.1473 おでぶなおばけさん
ユーザー ronpooronpoo
提出日時 2023-10-31 14:06:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 693 ms / 2,000 ms
コード長 1,110 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 139,904 KB
最終ジャッジ日時 2024-09-25 17:39:13
合計ジャッジ時間 19,109 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,888 KB
testcase_01 AC 45 ms
54,016 KB
testcase_02 AC 645 ms
134,412 KB
testcase_03 AC 440 ms
131,824 KB
testcase_04 AC 358 ms
111,488 KB
testcase_05 AC 184 ms
86,584 KB
testcase_06 AC 677 ms
126,824 KB
testcase_07 AC 563 ms
136,960 KB
testcase_08 AC 693 ms
138,240 KB
testcase_09 AC 482 ms
138,368 KB
testcase_10 AC 226 ms
98,220 KB
testcase_11 AC 245 ms
100,864 KB
testcase_12 AC 222 ms
98,944 KB
testcase_13 AC 129 ms
88,832 KB
testcase_14 AC 114 ms
84,608 KB
testcase_15 AC 170 ms
94,540 KB
testcase_16 AC 215 ms
99,540 KB
testcase_17 AC 96 ms
78,464 KB
testcase_18 AC 108 ms
78,464 KB
testcase_19 AC 333 ms
100,788 KB
testcase_20 AC 468 ms
120,140 KB
testcase_21 AC 562 ms
109,444 KB
testcase_22 AC 586 ms
124,112 KB
testcase_23 AC 660 ms
120,840 KB
testcase_24 AC 588 ms
116,220 KB
testcase_25 AC 469 ms
120,376 KB
testcase_26 AC 323 ms
128,216 KB
testcase_27 AC 178 ms
90,368 KB
testcase_28 AC 433 ms
135,888 KB
testcase_29 AC 330 ms
115,904 KB
testcase_30 AC 398 ms
119,576 KB
testcase_31 AC 540 ms
139,904 KB
testcase_32 AC 660 ms
126,448 KB
testcase_33 AC 363 ms
123,052 KB
testcase_34 AC 203 ms
99,668 KB
testcase_35 AC 255 ms
97,348 KB
testcase_36 AC 516 ms
106,400 KB
testcase_37 AC 322 ms
117,700 KB
testcase_38 AC 111 ms
82,304 KB
testcase_39 AC 196 ms
99,500 KB
testcase_40 AC 208 ms
99,748 KB
testcase_41 AC 155 ms
96,280 KB
testcase_42 AC 154 ms
96,440 KB
testcase_43 AC 270 ms
125,008 KB
testcase_44 AC 281 ms
125,136 KB
testcase_45 AC 272 ms
125,004 KB
testcase_46 AC 251 ms
118,656 KB
testcase_47 AC 320 ms
135,140 KB
testcase_48 AC 335 ms
130,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

G = [defaultdict(int) for _ in range(n)]
D = []
W = [float('inf')] * (m+2)
for i in range(m):
    s, t, d = std[i]
    s -= 1
    t -= 1
    if G[s][t] < d:
        G[s][t] = d
    if G[t][s] < d:
        G[t][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].items():            
            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