結果

問題 No.1473 おでぶなおばけさん
ユーザー titiatitia
提出日時 2022-02-11 02:29:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 741 ms / 2,000 ms
コード長 728 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 112,900 KB
最終ジャッジ日時 2024-06-26 10:20:12
合計ジャッジ時間 15,436 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,144 KB
testcase_01 AC 38 ms
54,272 KB
testcase_02 AC 554 ms
109,172 KB
testcase_03 AC 286 ms
108,800 KB
testcase_04 AC 376 ms
92,296 KB
testcase_05 AC 169 ms
79,872 KB
testcase_06 AC 483 ms
105,228 KB
testcase_07 AC 433 ms
108,396 KB
testcase_08 AC 741 ms
103,384 KB
testcase_09 AC 420 ms
108,388 KB
testcase_10 AC 128 ms
83,808 KB
testcase_11 AC 135 ms
83,488 KB
testcase_12 AC 140 ms
83,556 KB
testcase_13 AC 115 ms
79,812 KB
testcase_14 AC 97 ms
79,744 KB
testcase_15 AC 127 ms
83,188 KB
testcase_16 AC 121 ms
82,568 KB
testcase_17 AC 61 ms
71,168 KB
testcase_18 AC 67 ms
74,624 KB
testcase_19 AC 169 ms
84,280 KB
testcase_20 AC 264 ms
98,688 KB
testcase_21 AC 258 ms
93,440 KB
testcase_22 AC 183 ms
106,880 KB
testcase_23 AC 158 ms
104,448 KB
testcase_24 AC 156 ms
100,352 KB
testcase_25 AC 445 ms
98,444 KB
testcase_26 AC 541 ms
100,108 KB
testcase_27 AC 166 ms
81,068 KB
testcase_28 AC 628 ms
109,640 KB
testcase_29 AC 368 ms
95,924 KB
testcase_30 AC 447 ms
98,176 KB
testcase_31 AC 359 ms
112,900 KB
testcase_32 AC 329 ms
103,936 KB
testcase_33 AC 283 ms
95,248 KB
testcase_34 AC 184 ms
88,064 KB
testcase_35 AC 182 ms
88,088 KB
testcase_36 AC 282 ms
90,740 KB
testcase_37 AC 353 ms
102,076 KB
testcase_38 AC 106 ms
78,616 KB
testcase_39 AC 121 ms
83,048 KB
testcase_40 AC 115 ms
82,768 KB
testcase_41 AC 129 ms
88,228 KB
testcase_42 AC 130 ms
86,568 KB
testcase_43 AC 195 ms
108,320 KB
testcase_44 AC 187 ms
108,308 KB
testcase_45 AC 178 ms
108,312 KB
testcase_46 AC 238 ms
97,320 KB
testcase_47 AC 328 ms
103,808 KB
testcase_48 AC 288 ms
101,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

n,m=map(int,input().split())
E=[[] for i in range(n+1)]

for i in range(m):
    s,t,d=map(int,input().split())
    E[s].append((t,d))
    E[t].append((s,d))


OK=1
NG=1<<31

while NG-OK>1:
    mid=(OK+NG)//2

    GO=[0]*(n+1)
    GO[1]=1
    Q=[1]

    while Q:
        x=Q.pop()
        for to,d in E[x]:
            if d>=mid and GO[to]==0:
                GO[to]=1
                Q.append(to)

    if GO[n]==1:
        OK=mid
    else:
        NG=mid

X=[-1]*(n+1)
X[1]=0
Q=deque([1])

while Q:
    x=Q.popleft()
    
    for to,d in E[x]:
        if d>=OK and X[to]==-1:
            X[to]=X[x]+1
            Q.append(to)

print(OK,X[n])
                
0