結果

問題 No.1221 木 *= 3
ユーザー qibqib
提出日時 2023-05-05 17:45:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 386 ms / 2,000 ms
コード長 730 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 122,668 KB
最終ジャッジ日時 2024-05-02 12:37:47
合計ジャッジ時間 8,028 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 39 ms
52,224 KB
testcase_07 AC 315 ms
112,888 KB
testcase_08 AC 305 ms
111,416 KB
testcase_09 AC 319 ms
112,212 KB
testcase_10 AC 317 ms
111,412 KB
testcase_11 AC 326 ms
111,316 KB
testcase_12 AC 333 ms
122,620 KB
testcase_13 AC 329 ms
122,668 KB
testcase_14 AC 350 ms
122,424 KB
testcase_15 AC 368 ms
122,564 KB
testcase_16 AC 356 ms
122,444 KB
testcase_17 AC 349 ms
107,708 KB
testcase_18 AC 359 ms
108,204 KB
testcase_19 AC 375 ms
107,944 KB
testcase_20 AC 358 ms
107,724 KB
testcase_21 AC 386 ms
107,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))

g = [[] for _ in range(n)]
for _ in range(n - 1):
  u, v = map(int, input().split())
  u -= 1
  v -= 1
  g[u].append(v)
  g[v].append(u)

dp = [[0 for _ in range(2)] for _ in range(n)]
src = 0
st = [~ src, src]
par = [None for _ in range(n)]
while len(st) > 0:
  cur = st.pop()
  if cur >= 0:
    for nxt in g[cur]:
      if nxt == par[cur]:
        continue
      par[nxt] = cur
      st.append(~ nxt)
      st.append(nxt)
  else:
    dp[~ cur][0] += a[~ cur]
    if not par[~ cur] is None:
      dp[par[~ cur]][0] += max(dp[~ cur])
      dp[par[~ cur]][1] += max(dp[~ cur][0], dp[~ cur][1] + b[~ cur] + b[par[~ cur]])

print(max(dp[src]))
0