結果

問題 No.1221 木 *= 3
ユーザー chineristACchineristAC
提出日時 2020-09-05 12:58:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 295 ms / 2,000 ms
コード長 879 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 108,820 KB
最終ジャッジ日時 2024-05-06 01:29:09
合計ジャッジ時間 6,922 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,016 KB
testcase_01 AC 38 ms
53,632 KB
testcase_02 AC 39 ms
53,632 KB
testcase_03 AC 38 ms
54,016 KB
testcase_04 AC 39 ms
53,376 KB
testcase_05 AC 38 ms
53,888 KB
testcase_06 AC 38 ms
53,888 KB
testcase_07 AC 231 ms
105,724 KB
testcase_08 AC 230 ms
105,744 KB
testcase_09 AC 247 ms
105,324 KB
testcase_10 AC 242 ms
105,136 KB
testcase_11 AC 240 ms
105,200 KB
testcase_12 AC 226 ms
107,776 KB
testcase_13 AC 226 ms
108,820 KB
testcase_14 AC 233 ms
108,592 KB
testcase_15 AC 234 ms
108,648 KB
testcase_16 AC 229 ms
108,388 KB
testcase_17 AC 267 ms
105,640 KB
testcase_18 AC 280 ms
105,612 KB
testcase_19 AC 286 ms
105,768 KB
testcase_20 AC 295 ms
105,796 KB
testcase_21 AC 283 ms
105,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque

N = int(input())
a = list(map(int,input().split()))
b = list(map(int,input().split()))
edge = [[] for i in range(N)]
for _ in range(N-1):
    u,v = map(int,input().split())
    edge[u-1].append(v-1)
    edge[v-1].append(u-1)

deq = deque([0])
parent = [-1] * N
res = []
while deq:
    v = deq.popleft()
    res.append(v)
    for nv in edge[v]:
        if nv!=parent[v]:
            parent[nv] = v
            deq.append(nv)

res = res[::-1]

exist_dp = [0] * N
not_exist_dp = [0] * N

for v in res:
    #not_exist_dp
    not_exist_dp[v] = a[v]
    for nv in edge[v]:
        if nv!=parent[v]:
            not_exist_dp[v] += max(exist_dp[nv],not_exist_dp[nv])

    #exist_dp
    for nv in edge[v]:
        if nv!=parent[v]:
            exist_dp[v] += max(b[v]+b[nv]+exist_dp[nv],not_exist_dp[nv])

print(max(exist_dp[0],not_exist_dp[0]))
0