結果

問題 No.1221 木 *= 3
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-11-14 00:11:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,058 ms / 2,000 ms
コード長 420 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 63,984 KB
最終ジャッジ日時 2024-07-22 22:24:54
合計ジャッジ時間 16,879 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,880 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 966 ms
62,544 KB
testcase_08 AC 1,010 ms
63,984 KB
testcase_09 AC 991 ms
62,344 KB
testcase_10 AC 1,058 ms
63,504 KB
testcase_11 AC 994 ms
63,496 KB
testcase_12 AC 803 ms
44,756 KB
testcase_13 AC 816 ms
44,668 KB
testcase_14 AC 865 ms
44,820 KB
testcase_15 AC 875 ms
44,676 KB
testcase_16 AC 864 ms
44,632 KB
testcase_17 AC 901 ms
48,240 KB
testcase_18 AC 928 ms
48,848 KB
testcase_19 AC 904 ms
48,012 KB
testcase_20 AC 902 ms
48,008 KB
testcase_21 AC 912 ms
47,884 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.py:8: SyntaxWarning: invalid decimal literal
  d=[[0]*2for i in range(n)]

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)
n=int(input())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
G=[[]for i in range(n)]
for i in range(n-1):u,v=map(int,input().split());G[u-1].append(v-1);G[v-1].append(u-1)
d=[[0]*2for i in range(n)]
def f(u,p):
 d[u][0]=a[u]
 for v in G[u]:
  if v!=p:f(v,u);d[u][0]+=max(d[v][0],d[v][1]);d[u][1]+=max(d[v][0],d[v][1]+b[u]+b[v])
 return
f(0,-1)
print(max(d[0]))
0