結果

問題 No.1221 木 *= 3
ユーザー qibqib
提出日時 2023-05-05 17:45:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 427 ms / 2,000 ms
コード長 730 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 122,876 KB
最終ジャッジ日時 2024-11-23 02:31:26
合計ジャッジ時間 8,667 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
51,968 KB
testcase_01 AC 46 ms
51,840 KB
testcase_02 AC 47 ms
52,096 KB
testcase_03 AC 48 ms
52,096 KB
testcase_04 AC 48 ms
52,096 KB
testcase_05 AC 45 ms
51,968 KB
testcase_06 AC 42 ms
52,096 KB
testcase_07 AC 371 ms
112,564 KB
testcase_08 AC 363 ms
111,412 KB
testcase_09 AC 373 ms
112,340 KB
testcase_10 AC 375 ms
111,468 KB
testcase_11 AC 380 ms
111,180 KB
testcase_12 AC 382 ms
122,876 KB
testcase_13 AC 367 ms
122,804 KB
testcase_14 AC 387 ms
122,292 KB
testcase_15 AC 393 ms
122,440 KB
testcase_16 AC 388 ms
122,492 KB
testcase_17 AC 399 ms
107,348 KB
testcase_18 AC 423 ms
108,068 KB
testcase_19 AC 427 ms
108,288 KB
testcase_20 AC 421 ms
107,088 KB
testcase_21 AC 424 ms
107,524 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]))
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
0