結果

問題 No.1308 ジャンプビーコン
ユーザー りあんりあん
提出日時 2020-12-04 20:30:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,324 ms / 4,000 ms
コード長 1,420 bytes
コンパイル時間 1,165 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 91,576 KB
最終ジャッジ日時 2024-09-15 07:19:02
合計ジャッジ時間 39,032 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,504 KB
testcase_01 AC 42 ms
53,504 KB
testcase_02 AC 44 ms
53,888 KB
testcase_03 AC 53 ms
62,208 KB
testcase_04 AC 52 ms
61,952 KB
testcase_05 AC 52 ms
61,952 KB
testcase_06 AC 51 ms
61,952 KB
testcase_07 AC 53 ms
62,080 KB
testcase_08 AC 96 ms
76,160 KB
testcase_09 AC 99 ms
76,032 KB
testcase_10 AC 96 ms
76,160 KB
testcase_11 AC 95 ms
76,160 KB
testcase_12 AC 97 ms
76,160 KB
testcase_13 AC 211 ms
76,820 KB
testcase_14 AC 212 ms
77,076 KB
testcase_15 AC 217 ms
77,296 KB
testcase_16 AC 218 ms
76,916 KB
testcase_17 AC 215 ms
76,856 KB
testcase_18 AC 2,017 ms
87,788 KB
testcase_19 AC 2,010 ms
86,876 KB
testcase_20 AC 2,148 ms
89,172 KB
testcase_21 AC 1,951 ms
88,564 KB
testcase_22 AC 1,859 ms
86,568 KB
testcase_23 AC 43 ms
53,760 KB
testcase_24 AC 88 ms
76,452 KB
testcase_25 AC 86 ms
76,928 KB
testcase_26 AC 1,472 ms
91,172 KB
testcase_27 AC 1,453 ms
91,576 KB
testcase_28 AC 1,445 ms
87,392 KB
testcase_29 AC 1,930 ms
87,916 KB
testcase_30 AC 1,890 ms
89,532 KB
testcase_31 AC 2,251 ms
89,268 KB
testcase_32 AC 1,647 ms
89,484 KB
testcase_33 AC 2,184 ms
88,860 KB
testcase_34 AC 1,501 ms
88,272 KB
testcase_35 AC 1,515 ms
87,996 KB
testcase_36 AC 1,719 ms
85,736 KB
testcase_37 AC 1,566 ms
84,848 KB
testcase_38 AC 2,099 ms
87,088 KB
testcase_39 AC 2,324 ms
87,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env pypy3

from collections import deque

INF = 2 ** 60


def get_dist(s, g):
    if s == g:
        return 0
    dist = [INF for _ in edge]
    dist[s] = 0
    q = deque()
    q.append(s)
    while True:
        p = q.popleft()
        for c, t in edge[p]:
            if t == g:
                return dist[p] + c
            if dist[t] == INF:
                dist[t] = dist[p] + c
                q.append(t)


def calc(s, dp, l, ds):
    res = [i for i in dp]
    dist = [INF for _ in dp]
    vis = [False for _ in dp]
    st = deque()
    st.append(s)
    dist[s] = l

    while st:
        p = st[-1]
        if vis[p]:
            st.pop()
            for c, t in edge[p]:
                if dist[p] < dist[t]:
                    res[p] = min(res[p], res[t])
        else:
            vis[p] = True
            res[p] += min(dist[p], ds)
            for c, t in edge[p]:
                if dist[t] == INF:
                    dist[t] = dist[p] + c
                    st.append(t)

    return res


n, q, c = map(int, input().split())

edge = [[] for _ in range(n)]
for _ in range(n - 1):
    u, v, l = map(int, input().split())
    u -= 1
    v -= 1
    edge[u].append((l, v))
    edge[v].append((l, u))

x = list(map(lambda y: int(y) - 1, input().split()))
dp = [INF for _ in range(n)]
dp[x[0]] = 0
for prev, y in zip(x, x[1:]):
    d = get_dist(prev, y)
    dp = calc(y, dp, c, d)

print(min(dp))
0