結果

問題 No.1473 おでぶなおばけさん
ユーザー Eki1009Eki1009
提出日時 2021-04-09 21:44:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 559 ms / 2,000 ms
コード長 1,286 bytes
コンパイル時間 1,293 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 110,776 KB
最終ジャッジ日時 2024-06-25 04:51:34
合計ジャッジ時間 18,216 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,140 KB
testcase_01 AC 39 ms
53,484 KB
testcase_02 AC 549 ms
109,272 KB
testcase_03 AC 468 ms
103,088 KB
testcase_04 AC 362 ms
95,408 KB
testcase_05 AC 242 ms
82,776 KB
testcase_06 AC 476 ms
102,932 KB
testcase_07 AC 497 ms
110,488 KB
testcase_08 AC 549 ms
110,772 KB
testcase_09 AC 523 ms
110,488 KB
testcase_10 AC 203 ms
86,672 KB
testcase_11 AC 190 ms
86,576 KB
testcase_12 AC 207 ms
86,856 KB
testcase_13 AC 134 ms
80,924 KB
testcase_14 AC 114 ms
78,544 KB
testcase_15 AC 150 ms
83,496 KB
testcase_16 AC 184 ms
84,448 KB
testcase_17 AC 96 ms
77,132 KB
testcase_18 AC 102 ms
77,132 KB
testcase_19 AC 344 ms
89,024 KB
testcase_20 AC 438 ms
99,956 KB
testcase_21 AC 443 ms
95,492 KB
testcase_22 AC 465 ms
105,512 KB
testcase_23 AC 420 ms
102,108 KB
testcase_24 AC 394 ms
100,980 KB
testcase_25 AC 463 ms
104,444 KB
testcase_26 AC 462 ms
104,568 KB
testcase_27 AC 211 ms
85,880 KB
testcase_28 AC 517 ms
109,428 KB
testcase_29 AC 445 ms
94,932 KB
testcase_30 AC 490 ms
98,964 KB
testcase_31 AC 559 ms
110,776 KB
testcase_32 AC 519 ms
104,148 KB
testcase_33 AC 466 ms
99,212 KB
testcase_34 AC 331 ms
89,872 KB
testcase_35 AC 315 ms
88,608 KB
testcase_36 AC 304 ms
95,168 KB
testcase_37 AC 392 ms
100,556 KB
testcase_38 AC 173 ms
81,468 KB
testcase_39 AC 181 ms
84,484 KB
testcase_40 AC 186 ms
84,572 KB
testcase_41 AC 142 ms
87,204 KB
testcase_42 AC 140 ms
87,396 KB
testcase_43 AC 352 ms
109,196 KB
testcase_44 AC 355 ms
109,184 KB
testcase_45 AC 348 ms
109,076 KB
testcase_46 AC 223 ms
97,260 KB
testcase_47 AC 268 ms
101,960 KB
testcase_48 AC 260 ms
100,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

def dijkstra(G, start=0):
    n = len(G)
    dist = [-1] * n
    Q = []
    dist[start] = 0
    heapq.heappush(Q, (0, start))
    while Q:
        p = heapq.heappop(Q)
        v = p[1]
        d = dist[v]
        if d < p[0]:
            continue
        for nv, nc in G[v]:
            if dist[nv] == -1 or d + nc < dist[nv]:
                dist[nv] = d + nc
                heapq.heappush(Q, (d + nc, nv))
    return dist

def dijkstra_max(G, start=0):
    inf = 10**10
    n = len(G)
    dist = [-1] * n
    Q = []
    dist[start] = inf
    heapq.heappush(Q, (-inf, start))
    while Q:
        p = heapq.heappop(Q)
        v = p[1]
        d = dist[v]
        if d < p[0]:
            continue
        for nv, nc in G[v]:
            if dist[nv] == -1 or min(d, nc) > dist[nv]:
                dist[nv] = min(d, nc)
                heapq.heappush(Q, (-min(d, nc), nv))
    return dist

n, m = map(int, input().split())
G = [[] for _ in range(n)]
for _ in range(m):
    s, t, d = map(int, input().split())
    s -= 1
    t -= 1
    G[s].append((t, d))
    G[t].append((s, d))
L = dijkstra_max(G)
w = L[n-1]
T = [[] for _ in range(n)]
for v, g in enumerate(G):
    for nv, d in g:
        if w <= d:
            T[v].append((nv, 1))
ans = dijkstra(T)[n-1]
print(w, ans)
0