結果

問題 No.1308 ジャンプビーコン
ユーザー りあんりあん
提出日時 2020-12-04 18:43:36
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 814 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 100,932 KB
最終ジャッジ日時 2024-09-15 10:38:40
合計ジャッジ時間 44,162 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,712 KB
testcase_01 AC 42 ms
51,712 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 46 ms
57,984 KB
testcase_04 AC 49 ms
59,008 KB
testcase_05 AC 49 ms
58,880 KB
testcase_06 AC 46 ms
57,600 KB
testcase_07 AC 44 ms
57,984 KB
testcase_08 AC 89 ms
75,776 KB
testcase_09 AC 98 ms
75,520 KB
testcase_10 AC 84 ms
75,136 KB
testcase_11 AC 86 ms
75,520 KB
testcase_12 AC 82 ms
75,264 KB
testcase_13 AC 321 ms
77,824 KB
testcase_14 AC 351 ms
78,976 KB
testcase_15 AC 356 ms
77,952 KB
testcase_16 AC 361 ms
78,912 KB
testcase_17 AC 345 ms
78,364 KB
testcase_18 AC 3,022 ms
86,140 KB
testcase_19 AC 3,127 ms
87,660 KB
testcase_20 AC 3,286 ms
92,544 KB
testcase_21 AC 3,249 ms
87,168 KB
testcase_22 AC 2,934 ms
83,072 KB
testcase_23 AC 41 ms
52,096 KB
testcase_24 AC 64 ms
68,352 KB
testcase_25 AC 65 ms
68,480 KB
testcase_26 AC 2,361 ms
78,976 KB
testcase_27 AC 2,341 ms
78,464 KB
testcase_28 AC 2,343 ms
77,952 KB
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 AC 2,526 ms
78,720 KB
testcase_35 AC 2,543 ms
79,744 KB
testcase_36 AC 2,685 ms
82,340 KB
testcase_37 AC 2,744 ms
81,936 KB
testcase_38 AC 3,080 ms
100,404 KB
testcase_39 AC 3,180 ms
100,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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