結果

問題 No.1473 おでぶなおばけさん
ユーザー titiatitia
提出日時 2021-04-10 00:45:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 816 ms / 2,000 ms
コード長 728 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 134,400 KB
最終ジャッジ日時 2024-06-25 13:27:26
合計ジャッジ時間 15,483 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,904 KB
testcase_01 AC 40 ms
54,784 KB
testcase_02 AC 543 ms
118,872 KB
testcase_03 AC 326 ms
126,252 KB
testcase_04 AC 364 ms
104,380 KB
testcase_05 AC 182 ms
79,872 KB
testcase_06 AC 485 ms
112,512 KB
testcase_07 AC 512 ms
125,312 KB
testcase_08 AC 816 ms
126,472 KB
testcase_09 AC 504 ms
124,928 KB
testcase_10 AC 157 ms
83,960 KB
testcase_11 AC 167 ms
83,584 KB
testcase_12 AC 172 ms
83,968 KB
testcase_13 AC 129 ms
80,128 KB
testcase_14 AC 112 ms
79,956 KB
testcase_15 AC 145 ms
83,468 KB
testcase_16 AC 141 ms
82,672 KB
testcase_17 AC 74 ms
72,192 KB
testcase_18 AC 85 ms
77,056 KB
testcase_19 AC 183 ms
84,372 KB
testcase_20 AC 278 ms
114,048 KB
testcase_21 AC 304 ms
100,956 KB
testcase_22 AC 226 ms
123,392 KB
testcase_23 AC 198 ms
120,928 KB
testcase_24 AC 192 ms
114,460 KB
testcase_25 AC 521 ms
108,336 KB
testcase_26 AC 548 ms
107,648 KB
testcase_27 AC 170 ms
81,152 KB
testcase_28 AC 672 ms
123,264 KB
testcase_29 AC 336 ms
105,600 KB
testcase_30 AC 472 ms
102,356 KB
testcase_31 AC 398 ms
134,400 KB
testcase_32 AC 374 ms
121,216 KB
testcase_33 AC 324 ms
109,184 KB
testcase_34 AC 206 ms
94,756 KB
testcase_35 AC 180 ms
93,440 KB
testcase_36 AC 257 ms
92,680 KB
testcase_37 AC 379 ms
105,728 KB
testcase_38 AC 121 ms
78,312 KB
testcase_39 AC 142 ms
82,864 KB
testcase_40 AC 141 ms
82,688 KB
testcase_41 AC 169 ms
88,148 KB
testcase_42 AC 162 ms
86,432 KB
testcase_43 AC 217 ms
119,996 KB
testcase_44 AC 217 ms
119,808 KB
testcase_45 AC 220 ms
120,192 KB
testcase_46 AC 243 ms
110,464 KB
testcase_47 AC 345 ms
119,680 KB
testcase_48 AC 312 ms
107,904 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<<60

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