結果

問題 No.1221 木 *= 3
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-11-12 19:26:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 918 ms / 2,000 ms
コード長 422 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 63,860 KB
最終ジャッジ日時 2024-07-22 19:42:49
合計ジャッジ時間 15,805 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 881 ms
62,492 KB
testcase_08 AC 918 ms
63,860 KB
testcase_09 AC 896 ms
62,348 KB
testcase_10 AC 913 ms
63,504 KB
testcase_11 AC 892 ms
63,496 KB
testcase_12 AC 755 ms
44,704 KB
testcase_13 AC 757 ms
44,752 KB
testcase_14 AC 786 ms
44,628 KB
testcase_15 AC 765 ms
44,676 KB
testcase_16 AC 772 ms
44,680 KB
testcase_17 AC 821 ms
48,372 KB
testcase_18 AC 824 ms
48,896 KB
testcase_19 AC 837 ms
47,888 KB
testcase_20 AC 829 ms
47,880 KB
testcase_21 AC 837 ms
47,832 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