結果

問題 No.1308 ジャンプビーコン
ユーザー りあんりあん
提出日時 2020-12-04 19:43:36
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 876 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 81,896 KB
実行使用メモリ 271,488 KB
最終ジャッジ日時 2024-09-15 08:12:13
合計ジャッジ時間 61,580 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 43 ms
52,224 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 42 ms
57,728 KB
testcase_04 AC 45 ms
58,880 KB
testcase_05 AC 46 ms
59,648 KB
testcase_06 AC 42 ms
57,600 KB
testcase_07 AC 43 ms
57,984 KB
testcase_08 AC 79 ms
75,288 KB
testcase_09 AC 89 ms
75,360 KB
testcase_10 AC 73 ms
75,136 KB
testcase_11 AC 74 ms
75,008 KB
testcase_12 AC 70 ms
75,172 KB
testcase_13 AC 309 ms
78,080 KB
testcase_14 AC 348 ms
78,720 KB
testcase_15 AC 350 ms
77,568 KB
testcase_16 AC 355 ms
79,208 KB
testcase_17 AC 342 ms
78,500 KB
testcase_18 AC 2,986 ms
86,272 KB
testcase_19 AC 3,105 ms
87,536 KB
testcase_20 AC 3,131 ms
92,288 KB
testcase_21 AC 3,056 ms
87,244 KB
testcase_22 AC 2,829 ms
83,300 KB
testcase_23 AC 37 ms
52,224 KB
testcase_24 AC 56 ms
68,992 KB
testcase_25 AC 56 ms
68,480 KB
testcase_26 AC 2,377 ms
78,848 KB
testcase_27 AC 2,347 ms
78,440 KB
testcase_28 AC 2,332 ms
78,564 KB
testcase_29 TLE -
testcase_30 AC 3,897 ms
269,696 KB
testcase_31 TLE -
testcase_32 AC 2,954 ms
267,424 KB
testcase_33 AC 3,994 ms
266,112 KB
testcase_34 AC 2,377 ms
78,592 KB
testcase_35 AC 2,332 ms
79,708 KB
testcase_36 AC 2,589 ms
81,992 KB
testcase_37 AC 2,640 ms
81,792 KB
testcase_38 AC 2,950 ms
100,572 KB
testcase_39 AC 3,055 ms
101,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env pypy3

import sys
sys.setrecursionlimit(6000)

INF = 2 ** 60


def dfs_dist(p, par, g):
    if p == g:
        return 0
    for c, t in edge[p]:
        if t == par:
            continue
        d = c + dfs_dist(t, p, g)
        if d < INF:
            return d
    return INF


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

print(min(dp))
0