結果

問題 No.1221 木 *= 3
ユーザー H3PO4H3PO4
提出日時 2022-01-17 11:10:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 647 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 109,220 KB
最終ジャッジ日時 2024-05-02 18:57:21
合計ジャッジ時間 5,925 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
53,632 KB
testcase_01 AC 45 ms
53,760 KB
testcase_02 AC 41 ms
53,632 KB
testcase_03 AC 41 ms
53,504 KB
testcase_04 AC 41 ms
53,376 KB
testcase_05 AC 42 ms
53,760 KB
testcase_06 AC 42 ms
53,760 KB
testcase_07 AC 192 ms
107,552 KB
testcase_08 AC 187 ms
106,744 KB
testcase_09 AC 205 ms
107,076 KB
testcase_10 AC 204 ms
107,096 KB
testcase_11 AC 212 ms
107,216 KB
testcase_12 AC 201 ms
109,220 KB
testcase_13 AC 199 ms
108,920 KB
testcase_14 AC 211 ms
108,360 KB
testcase_15 AC 211 ms
108,620 KB
testcase_16 AC 205 ms
108,628 KB
testcase_17 AC 214 ms
107,824 KB
testcase_18 AC 226 ms
107,380 KB
testcase_19 AC 229 ms
106,820 KB
testcase_20 AC 228 ms
107,204 KB
testcase_21 AC 220 ms
107,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque

input = sys.stdin.buffer.readline

N = int(input())
A = tuple(map(int, input().split()))
B = tuple(map(int, input().split()))
T = [[] for _ in range(N)]
for _ in range(N - 1):
    u, v = (int(x) - 1 for x in input().split())
    T[u].append(v)
    T[v].append(u)

d = deque([(0, -1)])
dp0 = list(A)
dp1 = [0] * N

dfs_order = []
while d:
    v, p = d.pop()
    for x in T[v]:
        if x == p: continue
        dfs_order.append((v, x))
        d.append((x, v))

for v, x in reversed(dfs_order):
    dp0[v] += max(dp0[x], dp1[x])
    dp1[v] += max(dp0[x], dp1[x] + B[v] + B[x])
print(max(dp0[0], dp1[0]))
0