結果

問題 No.1221 木 *= 3
ユーザー marroncastlemarroncastle
提出日時 2020-09-13 04:09:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 494 ms / 2,000 ms
コード長 643 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 54,664 KB
最終ジャッジ日時 2024-06-10 21:34:16
合計ジャッジ時間 8,430 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 24 ms
10,752 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 24 ms
10,752 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 494 ms
54,664 KB
testcase_08 AC 479 ms
53,780 KB
testcase_09 AC 485 ms
54,384 KB
testcase_10 AC 479 ms
54,100 KB
testcase_11 AC 492 ms
54,180 KB
testcase_12 AC 398 ms
35,948 KB
testcase_13 AC 401 ms
36,016 KB
testcase_14 AC 406 ms
36,080 KB
testcase_15 AC 411 ms
36,052 KB
testcase_16 AC 404 ms
35,952 KB
testcase_17 AC 438 ms
35,700 KB
testcase_18 AC 445 ms
35,596 KB
testcase_19 AC 441 ms
35,668 KB
testcase_20 AC 454 ms
35,696 KB
testcase_21 AC 440 ms
35,700 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