結果

問題 No.1221 木 *= 3
ユーザー daikisuyamadaikisuyama
提出日時 2020-09-05 10:27:23
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 588 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 113,260 KB
最終ジャッジ日時 2024-11-27 21:36:33
合計ジャッジ時間 6,570 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 AC 39 ms
51,200 KB
testcase_02 AC 38 ms
51,584 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 39 ms
51,200 KB
testcase_06 AC 39 ms
51,712 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 278 ms
112,920 KB
testcase_13 AC 262 ms
113,104 KB
testcase_14 AC 273 ms
113,232 KB
testcase_15 AC 260 ms
113,260 KB
testcase_16 AC 269 ms
112,236 KB
testcase_17 AC 295 ms
110,904 KB
testcase_18 AC 292 ms
110,808 KB
testcase_19 AC 297 ms
111,068 KB
testcase_20 AC 303 ms
111,720 KB
testcase_21 AC 323 ms
111,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
tree=[[] for i in range(n)]
for i in range(n-1):
    u,v=map(int,input().split())
    tree[u-1].append(v-1)
    tree[v-1].append(u-1)
check=[False]*n
dp=[[0,0] for i in range(n)]

def dfs(i):
    global n,a,b,tree,check,dp
    #頂点iを消さない場合
    dp[i]=[a[i],0]
    for j in tree[i]:
        if not check[j]:
            check[j]=True
            dfs(j)
            dp[i][0]+=max(dp[j][0],dp[j][1])
            dp[i][1]+=max(dp[j][0],dp[j][1]+b[i]+b[j])

check[0]=True
dfs(0)
print(max(dp[0]))
0