結果

問題 No.763 Noelちゃんと木遊び
ユーザー titan23titan23
提出日時 2022-06-11 14:08:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 289 ms / 2,000 ms
コード長 1,337 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 103,936 KB
最終ジャッジ日時 2024-09-22 00:53:26
合計ジャッジ時間 6,113 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
103,936 KB
testcase_01 AC 136 ms
85,248 KB
testcase_02 AC 240 ms
98,432 KB
testcase_03 AC 162 ms
88,064 KB
testcase_04 AC 151 ms
86,272 KB
testcase_05 AC 170 ms
88,576 KB
testcase_06 AC 276 ms
103,040 KB
testcase_07 AC 262 ms
101,632 KB
testcase_08 AC 170 ms
86,908 KB
testcase_09 AC 146 ms
86,016 KB
testcase_10 AC 102 ms
79,232 KB
testcase_11 AC 287 ms
103,244 KB
testcase_12 AC 249 ms
98,816 KB
testcase_13 AC 268 ms
98,816 KB
testcase_14 AC 255 ms
97,408 KB
testcase_15 AC 179 ms
88,320 KB
testcase_16 AC 112 ms
78,336 KB
testcase_17 AC 185 ms
88,128 KB
testcase_18 AC 289 ms
103,296 KB
testcase_19 AC 252 ms
98,688 KB
testcase_20 AC 257 ms
98,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 非再帰

import sys
input = lambda: sys.stdin.readline().rstrip()

##################

n = int(input())
G = [[] for _ in range(n)]
for _ in range(n-1):
  u, v = map(int, input().split())
  u -= 1
  v -= 1
  G[u].append(v)
  G[v].append(u)

class Tree:

  def __init__(self, G: list, n: int):
    self.n = n
    self.G = G
    self.toposo = []
    self.dist = []

  def _calc_dist_toposo(self, root: int) -> None:
    todo = [root]
    self.dist = [-1] * self.n
    self.dist[root] = 0
    self.toposo = [root]
    while todo:
      v = todo.pop()
      d = self.dist[v] + 1
      for x in self.G[v]:
        if self.dist[x] != -1:
          continue
        self.dist[x] = d
        todo.append(x)
        self.toposo.append(x)

  def get_dist(self, root: int) -> list:
    "return dist."
    if self.dist:
      return self.dist
    self._calc_dist_toposo(root)
    return self.dist

  def get_toposo(self, root: int) -> list:
    "return dist."
    if self.toposo:
      return self.toposo
    self._calc_dist_toposo(root)
    return self.toposo

tree = Tree(G, n)

dp = [[0, 1] for _ in range(n)]
order = tree.get_toposo(0)
dist = tree.get_dist(0)

for v in order[::-1]:
  for x in G[v]:
    if dist[x] < dist[v]:
      continue
    dp[v][0] += max(dp[x][0], dp[x][1])
    dp[v][1] += max(dp[x][0], dp[x][1]-1)

print(max(dp[0]))
0