結果

問題 No.1221 木 *= 3
ユーザー brthyyjpbrthyyjp
提出日時 2020-09-04 22:25:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 773 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 114,284 KB
最終ジャッジ日時 2024-05-04 23:42:11
合計ジャッジ時間 4,337 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 AC 35 ms
51,712 KB
testcase_02 AC 32 ms
52,096 KB
testcase_03 AC 33 ms
52,224 KB
testcase_04 AC 33 ms
51,968 KB
testcase_05 AC 32 ms
51,840 KB
testcase_06 AC 33 ms
51,840 KB
testcase_07 AC 138 ms
104,448 KB
testcase_08 AC 141 ms
104,320 KB
testcase_09 AC 153 ms
104,436 KB
testcase_10 AC 156 ms
104,448 KB
testcase_11 AC 160 ms
104,320 KB
testcase_12 AC 158 ms
106,376 KB
testcase_13 AC 159 ms
107,080 KB
testcase_14 AC 170 ms
108,216 KB
testcase_15 AC 171 ms
112,232 KB
testcase_16 AC 178 ms
114,284 KB
testcase_17 AC 161 ms
104,448 KB
testcase_18 AC 165 ms
104,504 KB
testcase_19 AC 164 ms
104,576 KB
testcase_20 AC 165 ms
104,576 KB
testcase_21 AC 180 ms
104,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline

n = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
g = [[] for _ in range(n)]
for i in range(n-1):
    u, v = map(int, input().split())
    u, v = u-1, v-1
    g[u].append(v)
    g[v].append(u)

# topological順序の計算
s = []
s.append(0)
parent = [-1]*n
order = []
while s:
    x = s.pop()
    order.append(x)
    for nx in g[x]:
        if nx == parent[x]:
            continue
        parent[nx] = x
        s.append(nx)
#print(order)
order.reverse()

dp0 = [0]*n
dp1 = [0]*n
for v in order:
    p = parent[v]
    dp0[v] += A[v]
    if p != -1:
        dp0[p] += max(dp0[v], dp1[v])
        dp1[p] += max(B[p]+B[v]+dp1[v], dp0[v])
#print(dp0)
#print(dp1)
print(max(dp0[0], dp1[0]))
0