結果

問題 No.1308 ジャンプビーコン
ユーザー mkawa2mkawa2
提出日時 2023-12-27 01:04:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,190 ms / 4,000 ms
コード長 1,549 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 98,704 KB
最終ジャッジ日時 2024-09-27 15:19:51
合計ジャッジ時間 24,199 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,352 KB
testcase_01 AC 36 ms
52,608 KB
testcase_02 AC 38 ms
52,864 KB
testcase_03 AC 43 ms
59,520 KB
testcase_04 AC 43 ms
59,264 KB
testcase_05 AC 44 ms
59,264 KB
testcase_06 AC 44 ms
59,648 KB
testcase_07 AC 43 ms
59,264 KB
testcase_08 AC 84 ms
76,544 KB
testcase_09 AC 84 ms
76,620 KB
testcase_10 AC 83 ms
76,288 KB
testcase_11 AC 86 ms
76,416 KB
testcase_12 AC 85 ms
76,272 KB
testcase_13 AC 149 ms
76,612 KB
testcase_14 AC 146 ms
76,416 KB
testcase_15 AC 140 ms
76,396 KB
testcase_16 AC 144 ms
76,388 KB
testcase_17 AC 139 ms
76,512 KB
testcase_18 AC 1,039 ms
88,460 KB
testcase_19 AC 1,185 ms
89,992 KB
testcase_20 AC 1,146 ms
90,616 KB
testcase_21 AC 1,019 ms
89,964 KB
testcase_22 AC 1,026 ms
90,784 KB
testcase_23 AC 40 ms
52,608 KB
testcase_24 AC 81 ms
76,672 KB
testcase_25 AC 66 ms
72,704 KB
testcase_26 AC 1,110 ms
94,364 KB
testcase_27 AC 1,114 ms
96,196 KB
testcase_28 AC 1,043 ms
93,780 KB
testcase_29 AC 1,037 ms
89,048 KB
testcase_30 AC 1,190 ms
90,540 KB
testcase_31 AC 1,053 ms
89,132 KB
testcase_32 AC 916 ms
91,016 KB
testcase_33 AC 1,113 ms
89,380 KB
testcase_34 AC 1,092 ms
97,624 KB
testcase_35 AC 1,183 ms
98,704 KB
testcase_36 AC 1,112 ms
92,476 KB
testcase_37 AC 1,096 ms
92,992 KB
testcase_38 AC 1,101 ms
90,648 KB
testcase_39 AC 1,153 ms
89,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(1000005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

n,q,c=LI()
to=[[] for _ in range(n)]
for _ in range(n-1):
    u,v,l=LI1()
    l+=1
    to[u].append((v,l))
    to[v].append((u,l))
xx=LI1()

def dfs(root=0):
    uu, stack = [], [root]
    while stack:
        u = stack.pop()
        uu.append(u)
        for v,l in to[u]:
            if v == parent[u]: continue
            parent[v] = u
            depth[v] = depth[u]+l
            stack.append(v)
    return uu

dp=[inf]*n
dp[xx[0]]=0
for s,t in zip(xx,xx[1:]):
    dp,pre=[inf]*n,dp
    parent, depth = [-1]*n, [0]*n
    uu = dfs(t)
    for u in uu[::-1]:
        dp[u] = min(dp[u], pre[u]+depth[u]+c,pre[u]+depth[s])
        if u==s:dp[u]=min(dp[u],min(pre)+depth[s])
        if u==t:break
        p=parent[u]
        dp[p]=min(dp[p],dp[u])
    # print(t,dp)

print(min(dp))
0