結果

問題 No.1221 木 *= 3
ユーザー tktk_snsntktk_snsn
提出日時 2021-02-12 21:03:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 395 ms / 2,000 ms
コード長 796 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 118,016 KB
最終ジャッジ日時 2024-07-19 19:48:31
合計ジャッジ時間 7,842 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,968 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 43 ms
51,840 KB
testcase_03 AC 43 ms
51,968 KB
testcase_04 AC 42 ms
52,352 KB
testcase_05 AC 42 ms
51,840 KB
testcase_06 AC 44 ms
51,840 KB
testcase_07 AC 338 ms
107,520 KB
testcase_08 AC 329 ms
107,904 KB
testcase_09 AC 355 ms
107,648 KB
testcase_10 AC 353 ms
108,032 KB
testcase_11 AC 351 ms
107,648 KB
testcase_12 AC 286 ms
118,016 KB
testcase_13 AC 284 ms
118,016 KB
testcase_14 AC 296 ms
117,504 KB
testcase_15 AC 300 ms
117,632 KB
testcase_16 AC 293 ms
117,760 KB
testcase_17 AC 364 ms
107,776 KB
testcase_18 AC 360 ms
108,032 KB
testcase_19 AC 395 ms
108,544 KB
testcase_20 AC 394 ms
108,032 KB
testcase_21 AC 394 ms
108,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)
inf = 10**18

N = int(input())
A = tuple(map(int, input().split()))
B = tuple(map(int, input().split()))
G = [[] for _ in range(N)]
for _ in range(N - 1):
    a, b = map(int, input().split())
    a -= 1
    b -= 1
    G[a].append(b)
    G[b].append(a)

topo = []
par = [-1]*N
que = [0]
while que:
    s = que.pop()
    topo.append(s)
    for t in G[s]:
        if t == par[s]:
            continue
        par[t] = s
        G[t].remove(s)
        que.append(t)

dp_stay = [-inf] * N
dp_remove = [-inf] * N
for s in topo[::-1]:
    dp_remove[s] = A[s] + sum(max(dp_stay[c], dp_remove[c]) for c in G[s])
    dp_stay[s] = sum(max(dp_stay[c] + B[s] + B[c], dp_remove[c]) for c in G[s])

print(max(dp_stay[0], dp_remove[0]))
0