結果

問題 No.1473 おでぶなおばけさん
ユーザー 310icecrystal310icecrystal
提出日時 2023-07-06 05:02:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,219 ms / 2,000 ms
コード長 725 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 147,456 KB
最終ジャッジ日時 2024-07-20 00:06:08
合計ジャッジ時間 25,404 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,632 KB
testcase_01 AC 46 ms
54,016 KB
testcase_02 AC 1,076 ms
132,352 KB
testcase_03 AC 465 ms
121,344 KB
testcase_04 AC 571 ms
109,440 KB
testcase_05 AC 244 ms
84,096 KB
testcase_06 AC 943 ms
119,552 KB
testcase_07 AC 820 ms
139,136 KB
testcase_08 AC 1,219 ms
140,032 KB
testcase_09 AC 613 ms
140,800 KB
testcase_10 AC 254 ms
91,520 KB
testcase_11 AC 287 ms
90,624 KB
testcase_12 AC 240 ms
91,648 KB
testcase_13 AC 179 ms
82,816 KB
testcase_14 AC 162 ms
82,944 KB
testcase_15 AC 260 ms
91,136 KB
testcase_16 AC 191 ms
87,808 KB
testcase_17 AC 100 ms
77,184 KB
testcase_18 AC 105 ms
77,056 KB
testcase_19 AC 269 ms
88,448 KB
testcase_20 AC 362 ms
127,872 KB
testcase_21 AC 515 ms
103,296 KB
testcase_22 AC 385 ms
135,168 KB
testcase_23 AC 352 ms
136,192 KB
testcase_24 AC 332 ms
126,464 KB
testcase_25 AC 792 ms
115,968 KB
testcase_26 AC 960 ms
114,432 KB
testcase_27 AC 230 ms
84,096 KB
testcase_28 AC 1,159 ms
134,272 KB
testcase_29 AC 600 ms
103,936 KB
testcase_30 AC 654 ms
106,752 KB
testcase_31 AC 680 ms
147,456 KB
testcase_32 AC 640 ms
131,200 KB
testcase_33 AC 520 ms
120,448 KB
testcase_34 AC 255 ms
99,840 KB
testcase_35 AC 287 ms
93,696 KB
testcase_36 AC 456 ms
96,256 KB
testcase_37 AC 709 ms
118,272 KB
testcase_38 AC 155 ms
80,128 KB
testcase_39 AC 210 ms
87,680 KB
testcase_40 AC 204 ms
87,680 KB
testcase_41 AC 276 ms
96,048 KB
testcase_42 AC 270 ms
96,448 KB
testcase_43 AC 319 ms
120,420 KB
testcase_44 AC 333 ms
120,544 KB
testcase_45 AC 335 ms
120,384 KB
testcase_46 AC 426 ms
120,064 KB
testcase_47 AC 454 ms
124,032 KB
testcase_48 AC 510 ms
124,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
graph = [set() for _ in range(n+1)]
for _ in range(m):
    s,t,d = map(int,input().split())
    graph[s].add((t,d))
    graph[t].add((s,d))

from collections import deque
def bfs(G,start,w):
    Deq = deque()
    dist = [-1] * (n + 1)
    Deq.append(start)
    dist[start] = 0
    while Deq :
        pos = Deq.popleft()
        for nex,d in G[pos] :
            if dist[nex] == -1 and w <= d:
                dist[nex] = dist[pos] + 1
                Deq.append(nex)
    return dist

OK = 0
NG = 10**18
while NG - OK >= 2:
    MID = (OK+NG)//2
    dist_MID = bfs(graph,1,MID)
    if dist_MID[n] != -1:
        OK = MID
    else:
        NG = MID

dist_OK = bfs(graph,1,OK)
print(OK,dist_OK[n])
0