結果

問題 No.1221 木 *= 3
ユーザー marroncastlemarroncastle
提出日時 2020-12-31 18:36:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 311 ms / 2,000 ms
コード長 1,824 bytes
コンパイル時間 599 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 108,472 KB
最終ジャッジ日時 2024-10-09 17:45:02
合計ジャッジ時間 7,020 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,400 KB
testcase_01 AC 46 ms
54,144 KB
testcase_02 AC 44 ms
54,272 KB
testcase_03 AC 44 ms
54,272 KB
testcase_04 AC 43 ms
53,760 KB
testcase_05 AC 43 ms
53,888 KB
testcase_06 AC 43 ms
53,760 KB
testcase_07 AC 236 ms
104,828 KB
testcase_08 AC 222 ms
105,056 KB
testcase_09 AC 253 ms
105,044 KB
testcase_10 AC 234 ms
105,016 KB
testcase_11 AC 238 ms
105,108 KB
testcase_12 AC 220 ms
108,472 KB
testcase_13 AC 228 ms
108,288 KB
testcase_14 AC 255 ms
108,004 KB
testcase_15 AC 258 ms
107,908 KB
testcase_16 AC 256 ms
108,148 KB
testcase_17 AC 281 ms
106,076 KB
testcase_18 AC 305 ms
104,128 KB
testcase_19 AC 311 ms
105,648 KB
testcase_20 AC 306 ms
105,428 KB
testcase_21 AC 307 ms
103,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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:
        pass
        #根の帰りがけまとめ処理
      else:
        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
  
  def bfs(self, start):
    d = deque()
    self.min_cost = [-1]*self.V
    self.min_cost[start]=0
    d.append(start)
    while len(d)>0:
      v = d.popleft()
      for w in self.edge[v]:
        if self.min_cost[w]==-1:
          self.min_cost[w]=self.min_cost[v]+1
          d.append(w)
    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]))
0