結果
問題 | No.1221 木 *= 3 |
ユーザー | marroncastle |
提出日時 | 2020-12-31 18:37:53 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 249 ms / 2,000 ms |
コード長 | 1,453 bytes |
コンパイル時間 | 292 ms |
コンパイル使用メモリ | 82,172 KB |
実行使用メモリ | 108,492 KB |
最終ジャッジ日時 | 2024-10-09 17:49:32 |
合計ジャッジ時間 | 5,122 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
54,016 KB |
testcase_01 | AC | 40 ms
54,272 KB |
testcase_02 | AC | 40 ms
54,144 KB |
testcase_03 | AC | 41 ms
54,016 KB |
testcase_04 | AC | 41 ms
54,144 KB |
testcase_05 | AC | 40 ms
54,400 KB |
testcase_06 | AC | 41 ms
54,016 KB |
testcase_07 | AC | 201 ms
104,912 KB |
testcase_08 | AC | 194 ms
105,256 KB |
testcase_09 | AC | 211 ms
105,032 KB |
testcase_10 | AC | 203 ms
104,964 KB |
testcase_11 | AC | 197 ms
105,040 KB |
testcase_12 | AC | 194 ms
108,104 KB |
testcase_13 | AC | 198 ms
107,752 KB |
testcase_14 | AC | 223 ms
107,812 KB |
testcase_15 | AC | 234 ms
108,492 KB |
testcase_16 | AC | 215 ms
108,372 KB |
testcase_17 | AC | 231 ms
106,056 KB |
testcase_18 | AC | 230 ms
103,996 KB |
testcase_19 | AC | 236 ms
105,712 KB |
testcase_20 | AC | 242 ms
105,540 KB |
testcase_21 | AC | 249 ms
103,888 KB |
ソースコード
import sys input = sys.stdin.readline from collections import deque class Tree: def __init__(self, N): self.V = N self.edge = [[] for _ in range(N)] def add_edges(self, ind=1, bi=True): for i in range(self.V-1): a,b = map(int, input().split()) a -= ind; b -= ind self.edge[a].append(b) if bi: self.edge[b].append(a) def add_edge(self, a, b, bi=True): self.edge[a].append(b) if bi: self.edge[b].append(a) def dfs(self, start): stack = deque([start]) self.parent = [N]*N self.parent[start] = -1 order = [start] self.offs = A[:] self.ons = [0]*self.V #記録したい値の配列を定義 while stack: v = stack.pop() for u in self.edge[v]: if u==self.parent[v]: continue self.parent[u]=v stack.append(u) order.append(u) for v in order[::-1]: for u in self.edge[v]: if u==self.parent[v]: continue # 帰りがけ処理 self.offs[v] += self.offs[u] self.ons[v] += self.ons[u] if v!=start: self.offs[v], self.ons[v] = max(self.offs[v],self.ons[v]), max(self.offs[v],self.ons[v]+B[v]+B[self.parent[v]]) #根以外の帰りがけまとめ処理 return N = int(input()) A = list(map(int, input().split())) B = list(map(int, input().split())) G = Tree(N) G.add_edges(ind=1, bi=True) G.dfs(0) print(max(G.offs[0], G.ons[0]))