結果

問題 No.1221 木 *= 3
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-10-24 01:48:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,014 ms / 2,000 ms
コード長 608 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 63,364 KB
最終ジャッジ日時 2024-07-21 14:46:46
合計ジャッジ時間 16,522 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 34 ms
10,752 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 988 ms
62,912 KB
testcase_08 AC 991 ms
63,264 KB
testcase_09 AC 995 ms
62,328 KB
testcase_10 AC 995 ms
63,288 KB
testcase_11 AC 1,014 ms
63,364 KB
testcase_12 AC 842 ms
44,604 KB
testcase_13 AC 827 ms
44,588 KB
testcase_14 AC 846 ms
44,564 KB
testcase_15 AC 843 ms
44,736 KB
testcase_16 AC 840 ms
44,616 KB
testcase_17 AC 913 ms
48,160 KB
testcase_18 AC 915 ms
48,428 KB
testcase_19 AC 941 ms
47,868 KB
testcase_20 AC 941 ms
47,736 KB
testcase_21 AC 926 ms
47,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 6)
n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
edges = [[] for i in range(n)]
for i in range(n - 1):
    u, v = map(int, input().split())
    edges[u - 1].append(v - 1)
    edges[v - 1].append(u - 1)
dp = [[0] * 2 for i in range(n)]
def dfs(now, prev):
    dp[now][0] = a[now]
    for nex in edges[now]:
        if nex != prev:
            dfs(nex, now)
            dp[now][0] += max(dp[nex][0], dp[nex][1])
            dp[now][1] += max(dp[nex][0], dp[nex][1] + b[now] + b[nex])
    return None
dfs(0, -1)
print(max(dp[0]))
0