結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,252 KB
testcase_01 AC 36 ms
53,228 KB
testcase_02 AC 37 ms
53,480 KB
testcase_03 AC 38 ms
52,820 KB
testcase_04 AC 37 ms
53,020 KB
testcase_05 AC 38 ms
52,612 KB
testcase_06 AC 37 ms
52,984 KB
testcase_07 AC 158 ms
104,240 KB
testcase_08 AC 152 ms
104,572 KB
testcase_09 AC 164 ms
104,412 KB
testcase_10 AC 160 ms
104,596 KB
testcase_11 AC 169 ms
104,548 KB
testcase_12 AC 170 ms
106,720 KB
testcase_13 AC 169 ms
107,028 KB
testcase_14 AC 175 ms
108,588 KB
testcase_15 AC 181 ms
112,048 KB
testcase_16 AC 185 ms
114,116 KB
testcase_17 AC 167 ms
104,264 KB
testcase_18 AC 179 ms
104,452 KB
testcase_19 AC 175 ms
104,632 KB
testcase_20 AC 174 ms
104,484 KB
testcase_21 AC 184 ms
104,056 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