結果

問題 No.1473 おでぶなおばけさん
ユーザー FromBooskaFromBooska
提出日時 2023-04-29 17:50:55
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,412 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 556,628 KB
最終ジャッジ日時 2024-11-18 12:14:57
合計ジャッジ時間 51,358 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
60,040 KB
testcase_01 AC 35 ms
332,396 KB
testcase_02 TLE -
testcase_03 MLE -
testcase_04 AC 1,677 ms
275,452 KB
testcase_05 AC 567 ms
145,356 KB
testcase_06 AC 1,895 ms
271,040 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 274 ms
92,648 KB
testcase_11 AC 266 ms
94,200 KB
testcase_12 AC 274 ms
94,572 KB
testcase_13 AC 135 ms
85,740 KB
testcase_14 AC 120 ms
83,268 KB
testcase_15 AC 190 ms
91,436 KB
testcase_16 AC 254 ms
93,428 KB
testcase_17 AC 95 ms
77,852 KB
testcase_18 AC 138 ms
79,116 KB
testcase_19 AC 388 ms
108,648 KB
testcase_20 AC 894 ms
226,840 KB
testcase_21 AC 727 ms
156,408 KB
testcase_22 AC 529 ms
123,240 KB
testcase_23 AC 475 ms
117,604 KB
testcase_24 AC 454 ms
116,316 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 790 ms
209,424 KB
testcase_28 TLE -
testcase_29 AC 1,090 ms
217,208 KB
testcase_30 AC 1,814 ms
270,664 KB
testcase_31 AC 1,669 ms
264,260 KB
testcase_32 AC 1,100 ms
259,976 KB
testcase_33 AC 957 ms
212,364 KB
testcase_34 AC 655 ms
154,140 KB
testcase_35 AC 417 ms
115,984 KB
testcase_36 AC 1,020 ms
215,068 KB
testcase_37 AC 1,735 ms
270,304 KB
testcase_38 AC 308 ms
97,344 KB
testcase_39 AC 247 ms
93,944 KB
testcase_40 AC 259 ms
92,280 KB
testcase_41 AC 176 ms
94,576 KB
testcase_42 AC 161 ms
94,448 KB
testcase_43 AC 761 ms
265,124 KB
testcase_44 AC 748 ms
265,260 KB
testcase_45 AC 740 ms
264,880 KB
testcase_46 AC 828 ms
258,588 KB
testcase_47 AC 1,294 ms
281,036 KB
testcase_48 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

# 体重何キロまで行ける、は単調なので二分探索可能

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 heapq import heappush, heappop
INF = 10 ** 18
def dijkstra(s, n, connect): #(始点, ノード数)
    distance = [INF] * n
    que = [(0, s)] #(distance, node)
    distance[s] = 0
    confirmed = [False] * n # ノードが確定済みかどうか
    while que:
        w,v = heappop(que)
        if distance[v]<w:
            continue
        confirmed[v] = True
        for to, cost in connect[v]: # ノード v に隣接しているノードに対して
            if confirmed[to] == False and distance[v] + cost < distance[to]:
                distance[to] = distance[v] + cost
                heappush(que, (distance[to], to))
    return distance

def check(W):
    #W = 3
    edges = [[] for i in range(N+1)]
    for s, t, d in edge_list:
        if d >= W:
            edges[s].append((t, 1))
            edges[t].append((s, 1))
    distance = dijkstra(1, N+1, edges)
    #print(distance)
    if distance[N] == INF:
        return 0, distance[N]
    else:
        return 1, distance[N]

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

0