結果

問題 No.1221 木 *= 3
ユーザー takakintakakin
提出日時 2020-09-09 22:31:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 979 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 54,996 KB
最終ジャッジ日時 2024-05-09 18:50:44
合計ジャッジ時間 22,477 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,880 KB
testcase_01 AC 35 ms
11,008 KB
testcase_02 AC 34 ms
11,136 KB
testcase_03 AC 34 ms
11,008 KB
testcase_04 AC 34 ms
10,752 KB
testcase_05 AC 34 ms
11,136 KB
testcase_06 AC 34 ms
11,136 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 1,235 ms
48,956 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n=int(input())
A=[int(i) for i in input().split()]
B=[int(i) for i in input().split()]

edge=[[] for i 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)
inf=float("inf")
Par=[inf]*n
Par[0]=-1
Deg=[0]*n
Deg[0]=0
Chk=[0]
while Chk:
  c=Chk.pop()
  for next in edge[c]:
    if Par[next]==inf:
      Par[next]=c
      Deg[next]+=1
      Chk.append(next)
from collections import deque
TS=list(v for v in range(n) if Deg[v]==0)
D=deque(TS)
while D:
  v=D.popleft()
  for t in edge[v]:
    if t!=Par[v]:
      Deg[t]-=1
      if Deg[t]==0:
        D.append(t)
        TS.append(t)
P=[[0]*2 for _ in range(n)]
for i in range(n)[::-1]:
	cur=TS[i]
	Chd=[]
	for c in edge[cur]:
		if c!=Par[cur]:
			Chd.append(c)
	if not Chd:
		P[i][0]=A[i]
	else:
		for c in Chd:
			P[i][0]+=max(P[c][0],P[c][1])
			P[i][1]+=max(P[c][0],P[c][1]+B[i]+B[c])
		P[i][0]+=A[i]
print(max(P[0]))
0