結果

問題 No.1221 木 *= 3
ユーザー qumazakiqumazaki
提出日時 2020-09-05 02:04:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 284 ms / 2,000 ms
コード長 939 bytes
コンパイル時間 805 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 134,272 KB
最終ジャッジ日時 2024-05-05 04:04:59
合計ジャッジ時間 5,811 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 36 ms
51,840 KB
testcase_03 AC 36 ms
51,968 KB
testcase_04 AC 36 ms
52,096 KB
testcase_05 AC 36 ms
52,224 KB
testcase_06 AC 35 ms
51,968 KB
testcase_07 AC 284 ms
127,728 KB
testcase_08 AC 263 ms
127,940 KB
testcase_09 AC 278 ms
127,700 KB
testcase_10 AC 267 ms
127,796 KB
testcase_11 AC 263 ms
127,700 KB
testcase_12 AC 238 ms
134,128 KB
testcase_13 AC 247 ms
133,996 KB
testcase_14 AC 259 ms
133,864 KB
testcase_15 AC 250 ms
134,068 KB
testcase_16 AC 262 ms
134,272 KB
testcase_17 AC 254 ms
127,236 KB
testcase_18 AC 275 ms
127,324 KB
testcase_19 AC 255 ms
127,180 KB
testcase_20 AC 269 ms
127,476 KB
testcase_21 AC 281 ms
127,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

n = int(readline())
a = [0] + list(map(int,readline().split()))
b = [0] + list(map(int,readline().split()))
if(n==1):
    print(max(0,a[1]))
    exit()
data = list(map(int,read().split()))

links = [[] for _ in range(n+1)]
it = iter(data)
for u,v in zip(it,it):
    links[u].append(v)
    links[v].append(u)

stack = [1]
done = [0] * (n+1)
done[1] = 1
tp = []
child = [[] for _ in range(n+1)]
while(stack):
    i = stack.pop()
    tp.append(i)
    for j in links[i]:
        if(done[j] == 1):
            continue
        done[j] = 1
        child[i].append(j)
        stack.append(j)

scores = [[0,0] for _ in range(n+1)]

for i in tp[::-1]:
    for j in child[i]:
        scores[i][0] += max(scores[j][0] + b[i] + b[j], scores[j][1])
        scores[i][1] += max(scores[j])
    scores[i][1] += a[i]

print(max(scores[1]))
0