結果

問題 No.1221 木 *= 3
ユーザー marroncastlemarroncastle
提出日時 2020-09-13 04:07:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 1,220 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 107,296 KB
最終ジャッジ日時 2024-06-10 21:31:10
合計ジャッジ時間 5,524 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 35 ms
52,136 KB
testcase_03 AC 35 ms
51,968 KB
testcase_04 AC 33 ms
52,736 KB
testcase_05 AC 33 ms
52,096 KB
testcase_06 AC 33 ms
52,608 KB
testcase_07 AC 183 ms
101,996 KB
testcase_08 AC 176 ms
102,480 KB
testcase_09 AC 187 ms
103,180 KB
testcase_10 AC 187 ms
102,360 KB
testcase_11 AC 189 ms
102,388 KB
testcase_12 AC 169 ms
107,296 KB
testcase_13 AC 166 ms
106,988 KB
testcase_14 AC 174 ms
106,744 KB
testcase_15 AC 182 ms
106,756 KB
testcase_16 AC 180 ms
106,612 KB
testcase_17 AC 194 ms
98,636 KB
testcase_18 AC 193 ms
98,276 KB
testcase_19 AC 197 ms
98,904 KB
testcase_20 AC 195 ms
99,056 KB
testcase_21 AC 192 ms
98,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
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 dfs1(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 = dfs1(u, v)
#       offs += off
#       ons += on
#   if p==-1:
#     return offs, ons
#   return max(offs,ons),max(offs,ons+B[v]+B[p])
def dfs2(start):
  stack = [start]
  parent = [N]*N
  parent[start] = -1
  offs = A[:]
  ons = [0]*N
  while stack:
    v = stack[-1]
    marker = 0
    for u in edge[v]:
      if u==parent[v]:
        continue
      if parent[u]==N: #前半
        marker = 1
        parent[u]=v
        stack.append(u)
      else: #後半
        offs[v] += offs[u]
        ons[v] += ons[u]
    if marker==0: #後半だったら
      stack.pop()
      if v==start:
        continue
      offs[v], ons[v] = max(offs[v],ons[v]), max(offs[v],ons[v]+B[v]+B[parent[v]])
  return offs[0], ons[0]

off2, on2 = dfs2(0)
print(max(off2,on2))

0