結果

問題 No.1473 おでぶなおばけさん
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2021-11-28 19:11:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 778 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 50,272 KB
最終ジャッジ日時 2024-07-01 14:05:02
合計ジャッジ時間 14,619 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 1,906 ms
46,916 KB
testcase_03 AC 991 ms
40,156 KB
testcase_04 AC 1,216 ms
30,392 KB
testcase_05 AC 437 ms
17,552 KB
testcase_06 AC 1,904 ms
42,052 KB
testcase_07 AC 1,683 ms
49,564 KB
testcase_08 TLE -
testcase_09 AC 1,360 ms
49,400 KB
testcase_10 AC 1,351 ms
31,872 KB
testcase_11 AC 1,509 ms
30,592 KB
testcase_12 AC 832 ms
32,512 KB
testcase_13 AC 491 ms
23,040 KB
testcase_14 AC 371 ms
19,456 KB
testcase_15 AC 1,028 ms
27,520 KB
testcase_16 AC 748 ms
30,976 KB
testcase_17 AC 65 ms
12,032 KB
testcase_18 AC 107 ms
12,928 KB
testcase_19 AC 934 ms
29,888 KB
testcase_20 AC 813 ms
37,188 KB
testcase_21 AC 1,442 ms
37,288 KB
testcase_22 AC 755 ms
38,088 KB
testcase_23 AC 619 ms
35,016 KB
testcase_24 AC 624 ms
34,104 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 668 ms
22,400 KB
testcase_28 AC 1,926 ms
48,300 KB
testcase_29 AC 1,439 ms
35,752 KB
testcase_30 AC 1,786 ms
40,828 KB
testcase_31 AC 1,344 ms
47,180 KB
testcase_32 AC 1,289 ms
43,108 KB
testcase_33 AC 1,030 ms
37,236 KB
testcase_34 AC 519 ms
24,424 KB
testcase_35 AC 556 ms
26,408 KB
testcase_36 AC 1,471 ms
33,016 KB
testcase_37 AC 1,258 ms
35,872 KB
testcase_38 AC 231 ms
15,724 KB
testcase_39 AC 914 ms
31,104 KB
testcase_40 AC 787 ms
31,360 KB
testcase_41 AC 645 ms
28,164 KB
testcase_42 AC 654 ms
28,416 KB
testcase_43 AC 896 ms
40,168 KB
testcase_44 AC 906 ms
40,292 KB
testcase_45 AC 900 ms
40,292 KB
testcase_46 AC 1,123 ms
37,880 KB
testcase_47 AC 1,172 ms
43,200 KB
testcase_48 AC 1,306 ms
40,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict,deque
import sys
sys.setrecursionlimit(10**6)

N,M = map(int,input().split())
e = defaultdict(list)
for _ in range(M):
    s,t,d = map(int,input().split())
    s -= 1
    t -= 1
    e[s].append((d,t))
    e[t].append((d,s))
    
v = deque()

def is_ok(x):
    dist = [-1]*N
    dist[0] = 0
    v.append(0)
    while v:
        ix = v.popleft()
        
        for d,jx in e[ix]:
            if dist[jx] != -1:
                continue
            if d>=x:
                dist[jx] = dist[ix] + 1
                v.append(jx)
    if dist[N-1] == -1:
        return False
    else:
        return dist[N-1]
        
x = 0
y = 10**10
while y-x>1:
    mid = (y+x)//2
    if is_ok(mid):
        x = mid
    else:
        y = mid
print(x,is_ok(x))
0