結果

問題 No.1473 おでぶなおばけさん
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-04-09 21:49:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,081 ms / 2,000 ms
コード長 633 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 113,288 KB
最終ジャッジ日時 2024-06-25 05:03:45
合計ジャッジ時間 18,764 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,888 KB
testcase_01 AC 40 ms
53,760 KB
testcase_02 AC 608 ms
106,928 KB
testcase_03 AC 368 ms
100,484 KB
testcase_04 AC 417 ms
93,256 KB
testcase_05 AC 191 ms
80,512 KB
testcase_06 AC 632 ms
100,420 KB
testcase_07 AC 522 ms
104,228 KB
testcase_08 AC 872 ms
113,288 KB
testcase_09 AC 496 ms
104,740 KB
testcase_10 AC 170 ms
84,096 KB
testcase_11 AC 190 ms
83,840 KB
testcase_12 AC 169 ms
84,096 KB
testcase_13 AC 142 ms
81,152 KB
testcase_14 AC 117 ms
78,848 KB
testcase_15 AC 177 ms
83,840 KB
testcase_16 AC 173 ms
82,816 KB
testcase_17 AC 86 ms
77,420 KB
testcase_18 AC 90 ms
77,440 KB
testcase_19 AC 226 ms
84,992 KB
testcase_20 AC 325 ms
97,664 KB
testcase_21 AC 343 ms
92,288 KB
testcase_22 AC 292 ms
108,032 KB
testcase_23 AC 268 ms
106,112 KB
testcase_24 AC 260 ms
102,272 KB
testcase_25 AC 1,081 ms
112,148 KB
testcase_26 AC 1,078 ms
110,436 KB
testcase_27 AC 222 ms
82,176 KB
testcase_28 AC 788 ms
110,848 KB
testcase_29 AC 419 ms
93,696 KB
testcase_30 AC 662 ms
98,304 KB
testcase_31 AC 529 ms
109,184 KB
testcase_32 AC 429 ms
100,096 KB
testcase_33 AC 367 ms
95,232 KB
testcase_34 AC 250 ms
88,064 KB
testcase_35 AC 199 ms
86,784 KB
testcase_36 AC 367 ms
90,496 KB
testcase_37 AC 575 ms
102,000 KB
testcase_38 AC 142 ms
79,104 KB
testcase_39 AC 166 ms
82,944 KB
testcase_40 AC 166 ms
83,328 KB
testcase_41 AC 203 ms
87,348 KB
testcase_42 AC 158 ms
87,600 KB
testcase_43 AC 219 ms
96,896 KB
testcase_44 AC 219 ms
96,896 KB
testcase_45 AC 219 ms
96,640 KB
testcase_46 AC 327 ms
96,256 KB
testcase_47 AC 369 ms
98,816 KB
testcase_48 AC 347 ms
98,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n,m = map(int,input().split())
e = [[] for i in range(n)]
for i in range(m):
    s,t,d = map(int,input().split())
    s -= 1
    t -= 1
    e[s].append((t,d))
    e[t].append((s,d))
inf = 10**20

def search(M):
    dis = [inf]*n
    dis[0] = 0
    q = deque([0])
    while q:
        now = q.popleft()
        for nex,d in e[now]:
            if d >= M and dis[nex] > dis[now]+1:
                dis[nex] = dis[now]+1
                q.append(nex)
    return dis[-1]


l = 0
r = 10**9+5
while r > l + 1:
    m = (r+l)//2
    if search(m) == inf:
        r = m
    else:
        l = m
print(l,search(l))
0