結果

問題 No.763 Noelちゃんと木遊び
ユーザー titan23titan23
提出日時 2022-06-11 13:40:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 391 ms / 2,000 ms
コード長 600 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 181,248 KB
最終ジャッジ日時 2024-09-21 23:53:49
合計ジャッジ時間 5,808 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 391 ms
181,248 KB
testcase_01 AC 142 ms
83,072 KB
testcase_02 AC 225 ms
91,904 KB
testcase_03 AC 165 ms
87,168 KB
testcase_04 AC 145 ms
83,968 KB
testcase_05 AC 161 ms
86,656 KB
testcase_06 AC 258 ms
95,360 KB
testcase_07 AC 252 ms
94,976 KB
testcase_08 AC 177 ms
87,552 KB
testcase_09 AC 142 ms
83,712 KB
testcase_10 AC 114 ms
79,488 KB
testcase_11 AC 252 ms
95,616 KB
testcase_12 AC 237 ms
93,824 KB
testcase_13 AC 235 ms
93,440 KB
testcase_14 AC 211 ms
91,392 KB
testcase_15 AC 170 ms
87,168 KB
testcase_16 AC 102 ms
78,208 KB
testcase_17 AC 166 ms
87,168 KB
testcase_18 AC 249 ms
95,488 KB
testcase_19 AC 233 ms
93,952 KB
testcase_20 AC 242 ms
93,696 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)

dp = [[0, 0] for _ in range(n)]

def dfs(p, v):
  ch0, ch1 = 0, 0
  for x in G[v]:
    if x == p:
      continue
    dfs(v, x)
    ch0 += max(dp[x][0], dp[x][1])
    ch1 += max(dp[x][0], dp[x][1]-1)
  dp[v][0] = ch0
  dp[v][1] = ch1 + 1

dfs(-1, 0)
# print(*dp)
print(max(dp[0]))
0