結果

問題 No.1221 木 *= 3
ユーザー marroncastlemarroncastle
提出日時 2020-09-05 03:20:03
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 695 ms / 2,000 ms
コード長 615 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 54,368 KB
最終ジャッジ日時 2024-11-27 04:14:47
合計ジャッジ時間 12,160 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 25 ms
10,624 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 669 ms
54,368 KB
testcase_08 AC 672 ms
53,584 KB
testcase_09 AC 695 ms
54,024 KB
testcase_10 AC 693 ms
53,752 KB
testcase_11 AC 684 ms
53,828 KB
testcase_12 AC 601 ms
35,932 KB
testcase_13 AC 592 ms
35,924 KB
testcase_14 AC 615 ms
35,836 KB
testcase_15 AC 618 ms
35,788 KB
testcase_16 AC 606 ms
35,972 KB
testcase_17 AC 651 ms
35,504 KB
testcase_18 AC 647 ms
35,184 KB
testcase_19 AC 647 ms
35,208 KB
testcase_20 AC 656 ms
35,204 KB
testcase_21 AC 650 ms
35,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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)
import sys
sys.setrecursionlimit(10**6)

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