結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 990 ms
62,404 KB
testcase_08 AC 992 ms
63,456 KB
testcase_09 AC 995 ms
62,272 KB
testcase_10 AC 1,012 ms
63,472 KB
testcase_11 AC 1,025 ms
63,624 KB
testcase_12 AC 836 ms
44,744 KB
testcase_13 AC 834 ms
44,736 KB
testcase_14 AC 844 ms
44,608 KB
testcase_15 AC 848 ms
44,664 KB
testcase_16 AC 842 ms
44,788 KB
testcase_17 AC 930 ms
47,812 KB
testcase_18 AC 930 ms
48,576 KB
testcase_19 AC 937 ms
47,984 KB
testcase_20 AC 936 ms
47,856 KB
testcase_21 AC 931 ms
47,988 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.py:9: SyntaxWarning: invalid decimal literal
  d=[[0]*2for i in range(n)]

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)
def M():return map(int,input().split())
n=int(input())
a=list(M())
b=list(M())
G=[[]for i in range(n)]
for i in range(n-1):u,v=M();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