結果

問題 No.1221 木 *= 3
ユーザー 👑 rin204rin204
提出日時 2022-04-12 10:26:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 701 ms / 2,000 ms
コード長 617 bytes
コンパイル時間 426 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 212,596 KB
最終ジャッジ日時 2024-05-09 21:42:18
合計ジャッジ時間 8,529 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,548 KB
testcase_01 AC 38 ms
52,836 KB
testcase_02 AC 37 ms
54,228 KB
testcase_03 AC 39 ms
54,012 KB
testcase_04 AC 38 ms
52,692 KB
testcase_05 AC 38 ms
53,316 KB
testcase_06 AC 38 ms
53,048 KB
testcase_07 AC 610 ms
208,688 KB
testcase_08 AC 700 ms
211,776 KB
testcase_09 AC 602 ms
206,532 KB
testcase_10 AC 698 ms
212,596 KB
testcase_11 AC 701 ms
212,108 KB
testcase_12 AC 231 ms
100,908 KB
testcase_13 AC 231 ms
101,144 KB
testcase_14 AC 246 ms
100,752 KB
testcase_15 AC 247 ms
100,016 KB
testcase_16 AC 242 ms
100,028 KB
testcase_17 AC 291 ms
99,644 KB
testcase_18 AC 278 ms
99,920 KB
testcase_19 AC 287 ms
99,188 KB
testcase_20 AC 290 ms
98,808 KB
testcase_21 AC 292 ms
99,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 9)

n = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
edges = [[] for _ in range(n)]
for _ in range(n - 1):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    edges[u].append(v)
    edges[v].append(u)
    
dp0 = [0] * n
dp1 = [0] * n

def dfs(pos, bpos):
    dp0[pos] = A[pos]
    for npos in edges[pos]:
        if npos == bpos:
            continue
        dfs(npos, pos)
        dp0[pos] += max(dp0[npos], dp1[npos])
        dp1[pos] += max(dp0[npos], dp1[npos] + B[pos] + B[npos])
    
dfs(0, -1)
print(max(dp0[0], dp1[0]))
0