結果

問題 No.1308 ジャンプビーコン
ユーザー りあんりあん
提出日時 2020-12-04 20:12:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,508 ms / 4,000 ms
コード長 1,043 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 270,636 KB
最終ジャッジ日時 2024-09-15 08:13:09
合計ジャッジ時間 50,371 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,168 KB
testcase_01 AC 42 ms
55,868 KB
testcase_02 AC 41 ms
54,928 KB
testcase_03 AC 46 ms
60,836 KB
testcase_04 AC 49 ms
62,176 KB
testcase_05 AC 48 ms
61,940 KB
testcase_06 AC 46 ms
60,324 KB
testcase_07 AC 46 ms
60,244 KB
testcase_08 AC 78 ms
76,700 KB
testcase_09 AC 88 ms
76,188 KB
testcase_10 AC 78 ms
76,028 KB
testcase_11 AC 74 ms
76,264 KB
testcase_12 AC 72 ms
76,120 KB
testcase_13 AC 297 ms
79,836 KB
testcase_14 AC 259 ms
79,248 KB
testcase_15 AC 284 ms
78,500 KB
testcase_16 AC 274 ms
78,916 KB
testcase_17 AC 280 ms
79,072 KB
testcase_18 AC 2,439 ms
84,708 KB
testcase_19 AC 2,377 ms
86,336 KB
testcase_20 AC 2,498 ms
89,048 KB
testcase_21 AC 2,338 ms
86,628 KB
testcase_22 AC 2,205 ms
83,204 KB
testcase_23 AC 43 ms
54,140 KB
testcase_24 AC 64 ms
74,464 KB
testcase_25 AC 63 ms
74,452 KB
testcase_26 AC 1,821 ms
79,196 KB
testcase_27 AC 1,723 ms
79,316 KB
testcase_28 AC 1,797 ms
79,020 KB
testcase_29 AC 3,508 ms
270,300 KB
testcase_30 AC 3,375 ms
269,568 KB
testcase_31 AC 3,329 ms
270,636 KB
testcase_32 AC 2,583 ms
268,772 KB
testcase_33 AC 3,371 ms
267,652 KB
testcase_34 AC 1,828 ms
79,744 KB
testcase_35 AC 1,831 ms
79,488 KB
testcase_36 AC 2,088 ms
82,176 KB
testcase_37 AC 2,182 ms
82,604 KB
testcase_38 AC 2,491 ms
95,812 KB
testcase_39 AC 2,502 ms
96,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env pypy3

import sys
from collections import deque
sys.setrecursionlimit(6000)

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 dfs(p, par, l, ds):
    dp[p] += min(l, ds)
    for c, t in edge[p]:
        if t == par:
            continue
        dp[p] = min(dp[p], dfs(t, p, l + c, ds))
    return dp[p]


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)
    dfs(y, -1, c, d)

print(min(dp))
0