結果

問題 No.1221 木 *= 3
ユーザー marroncastlemarroncastle
提出日時 2020-09-13 04:09:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 548 ms / 2,000 ms
コード長 643 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 81,708 KB
実行使用メモリ 219,136 KB
最終ジャッジ日時 2024-06-10 21:33:42
合計ジャッジ時間 7,008 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 36 ms
51,968 KB
testcase_05 AC 38 ms
52,480 KB
testcase_06 AC 36 ms
51,712 KB
testcase_07 AC 436 ms
205,696 KB
testcase_08 AC 505 ms
219,136 KB
testcase_09 AC 449 ms
206,976 KB
testcase_10 AC 548 ms
216,064 KB
testcase_11 AC 545 ms
216,320 KB
testcase_12 AC 142 ms
101,184 KB
testcase_13 AC 144 ms
99,348 KB
testcase_14 AC 166 ms
99,092 KB
testcase_15 AC 170 ms
99,952 KB
testcase_16 AC 160 ms
100,352 KB
testcase_17 AC 191 ms
99,444 KB
testcase_18 AC 190 ms
98,432 KB
testcase_19 AC 205 ms
98,276 KB
testcase_20 AC 212 ms
98,560 KB
testcase_21 AC 214 ms
98,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)
input = sys.stdin.readline

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

def dfs(v, p):
  if p>=0 and len(edge[v])==1:
    offs, ons = max(A[v],0), max(A[v],B[v]+B[p])
    return offs, ons 
  offs, ons = A[v],0
  for u in edge[v]:
    if u!=p:
      off, on = dfs(u, v)
      offs += off
      ons += on
  if p==-1:
    return offs, ons
  return max(offs,ons),max(offs,ons+B[v]+B[p])

off, on = dfs(0, -1)
print(max(off,on))
0