結果

問題 No.1473 おでぶなおばけさん
ユーザー FromBooskaFromBooska
提出日時 2023-04-29 17:58:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,089 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 72,032 KB
最終ジャッジ日時 2024-11-18 12:20:01
合計ジャッジ時間 71,957 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
17,696 KB
testcase_01 AC 30 ms
47,876 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 487 ms
56,804 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 599 ms
32,292 KB
testcase_11 AC 554 ms
57,520 KB
testcase_12 AC 592 ms
32,928 KB
testcase_13 AC 338 ms
18,560 KB
testcase_14 AC 257 ms
16,384 KB
testcase_15 AC 470 ms
21,376 KB
testcase_16 AC 507 ms
24,832 KB
testcase_17 AC 66 ms
11,648 KB
testcase_18 AC 89 ms
12,288 KB
testcase_19 AC 615 ms
24,320 KB
testcase_20 AC 1,537 ms
30,732 KB
testcase_21 AC 1,145 ms
30,648 KB
testcase_22 AC 1,165 ms
31,328 KB
testcase_23 AC 1,076 ms
28,884 KB
testcase_24 AC 968 ms
27,980 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 1,076 ms
20,096 KB
testcase_28 TLE -
testcase_29 AC 1,680 ms
30,644 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 AC 1,940 ms
35,244 KB
testcase_33 AC 1,575 ms
30,376 KB
testcase_34 AC 816 ms
21,988 KB
testcase_35 AC 562 ms
21,936 KB
testcase_36 AC 1,488 ms
28,244 KB
testcase_37 TLE -
testcase_38 AC 241 ms
14,592 KB
testcase_39 AC 508 ms
25,088 KB
testcase_40 AC 510 ms
25,088 KB
testcase_41 AC 489 ms
22,024 KB
testcase_42 AC 502 ms
21,888 KB
testcase_43 AC 1,206 ms
32,076 KB
testcase_44 AC 1,194 ms
31,976 KB
testcase_45 AC 1,198 ms
31,984 KB
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

# 体重何キロまで行ける、は単調なので二分探索可能
# ダイクストラでTLEしたのでBFSにする

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

from collections import deque
INF = 10**10

def BFS(W):
    edges = [[] for i in range(N+1)]
    for s, t, d in edge_list:
        if d >= W:
            edges[s].append(t)
            edges[t].append(s)
    start = 1
    goal = N
    distance = [INF]*(N+1)  
    distance[start] = 0
    que = deque()
    que.append(start)
    while que:
        current = que.popleft()
        for nxt in edges[current]:
            if distance[nxt] > distance[current]+1:
                distance[nxt] = distance[current]+1
                que.append(nxt)
    if distance[N] == INF:
        return 0, INF
    else:
        return 1, distance[N]

OK = 0
NG = 10**9+1
while NG-OK>1:
    mid = (NG+OK)//2
    if BFS(mid)[0] == 1:
        OK = mid
    else:
        NG = mid
ans_W = OK
ans_distance = BFS(ans_W)[1]
print(ans_W, ans_distance)

0