結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,504 KB
testcase_01 AC 46 ms
53,120 KB
testcase_02 AC 46 ms
53,248 KB
testcase_03 AC 46 ms
53,888 KB
testcase_04 AC 43 ms
53,760 KB
testcase_05 AC 45 ms
53,376 KB
testcase_06 AC 44 ms
53,504 KB
testcase_07 AC 265 ms
105,720 KB
testcase_08 AC 264 ms
105,624 KB
testcase_09 AC 283 ms
104,816 KB
testcase_10 AC 275 ms
104,620 KB
testcase_11 AC 274 ms
105,064 KB
testcase_12 AC 248 ms
107,912 KB
testcase_13 AC 260 ms
108,948 KB
testcase_14 AC 264 ms
108,576 KB
testcase_15 AC 252 ms
108,252 KB
testcase_16 AC 252 ms
108,252 KB
testcase_17 AC 309 ms
105,648 KB
testcase_18 AC 295 ms
105,092 KB
testcase_19 AC 289 ms
105,180 KB
testcase_20 AC 301 ms
105,208 KB
testcase_21 AC 305 ms
105,452 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