結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,760 KB
testcase_01 AC 43 ms
53,632 KB
testcase_02 AC 39 ms
53,760 KB
testcase_03 AC 39 ms
53,632 KB
testcase_04 AC 40 ms
53,376 KB
testcase_05 AC 40 ms
53,760 KB
testcase_06 AC 39 ms
53,632 KB
testcase_07 AC 190 ms
107,804 KB
testcase_08 AC 203 ms
107,228 KB
testcase_09 AC 193 ms
106,956 KB
testcase_10 AC 191 ms
107,204 KB
testcase_11 AC 199 ms
107,052 KB
testcase_12 AC 195 ms
109,176 KB
testcase_13 AC 200 ms
108,500 KB
testcase_14 AC 201 ms
108,488 KB
testcase_15 AC 203 ms
108,488 KB
testcase_16 AC 204 ms
108,716 KB
testcase_17 AC 207 ms
107,904 KB
testcase_18 AC 213 ms
106,996 KB
testcase_19 AC 211 ms
107,020 KB
testcase_20 AC 222 ms
107,148 KB
testcase_21 AC 220 ms
107,300 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