結果

問題 No.763 Noelちゃんと木遊び
ユーザー titan23titan23
提出日時 2022-06-11 13:54:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 308 ms / 2,000 ms
コード長 924 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 103,936 KB
最終ジャッジ日時 2024-09-22 00:29:17
合計ジャッジ時間 5,988 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 178 ms
103,936 KB
testcase_01 AC 155 ms
82,688 KB
testcase_02 AC 266 ms
97,792 KB
testcase_03 AC 183 ms
86,448 KB
testcase_04 AC 163 ms
86,400 KB
testcase_05 AC 185 ms
87,296 KB
testcase_06 AC 295 ms
103,168 KB
testcase_07 AC 265 ms
99,424 KB
testcase_08 AC 172 ms
86,864 KB
testcase_09 AC 142 ms
82,944 KB
testcase_10 AC 99 ms
77,756 KB
testcase_11 AC 302 ms
103,428 KB
testcase_12 AC 259 ms
100,320 KB
testcase_13 AC 273 ms
98,816 KB
testcase_14 AC 227 ms
91,392 KB
testcase_15 AC 169 ms
87,168 KB
testcase_16 AC 96 ms
78,204 KB
testcase_17 AC 169 ms
86,556 KB
testcase_18 AC 308 ms
103,168 KB
testcase_19 AC 268 ms
100,608 KB
testcase_20 AC 276 ms
100,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 非再帰

import sys
input = lambda: sys.stdin.readline().rstrip()
sys.setrecursionlimit(10**6)
import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')

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

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)

def tree(G: list, root: int) -> list:
  "get topological_sort and dist."
  n = len(G)
  todo = [root]
  dist = [-1] * n
  order = [root]
  dist[root] = 0
  while todo:
    v = todo.pop()
    d = dist[v] + 1
    for x in G[v]:
      if dist[x] != -1:
        continue
      dist[x] = d
      todo.append(x)
      order.append(x)
  return (order, dist)

dp = [[0, 1] for _ in range(n)]
order, dist = tree(G, 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