結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 171 ms
103,808 KB
testcase_01 AC 148 ms
82,816 KB
testcase_02 AC 258 ms
97,792 KB
testcase_03 AC 186 ms
86,528 KB
testcase_04 AC 164 ms
86,528 KB
testcase_05 AC 181 ms
87,296 KB
testcase_06 AC 295 ms
103,040 KB
testcase_07 AC 279 ms
98,944 KB
testcase_08 AC 191 ms
86,784 KB
testcase_09 AC 151 ms
82,944 KB
testcase_10 AC 109 ms
77,696 KB
testcase_11 AC 312 ms
103,296 KB
testcase_12 AC 273 ms
100,096 KB
testcase_13 AC 271 ms
98,688 KB
testcase_14 AC 231 ms
91,264 KB
testcase_15 AC 173 ms
86,912 KB
testcase_16 AC 108 ms
78,336 KB
testcase_17 AC 185 ms
86,656 KB
testcase_18 AC 302 ms
103,424 KB
testcase_19 AC 267 ms
100,608 KB
testcase_20 AC 280 ms
100,864 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