結果

問題 No.763 Noelちゃんと木遊び
ユーザー titan23titan23
提出日時 2022-06-11 13:39:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 356 ms / 2,000 ms
コード長 540 bytes
コンパイル時間 1,160 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 179,712 KB
最終ジャッジ日時 2024-09-21 23:53:10
合計ジャッジ時間 7,394 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 356 ms
179,712 KB
testcase_01 AC 143 ms
83,456 KB
testcase_02 AC 233 ms
93,184 KB
testcase_03 AC 171 ms
87,936 KB
testcase_04 AC 150 ms
84,352 KB
testcase_05 AC 181 ms
87,680 KB
testcase_06 AC 261 ms
96,512 KB
testcase_07 AC 255 ms
96,128 KB
testcase_08 AC 189 ms
88,448 KB
testcase_09 AC 165 ms
85,120 KB
testcase_10 AC 121 ms
80,384 KB
testcase_11 AC 293 ms
96,512 KB
testcase_12 AC 265 ms
94,592 KB
testcase_13 AC 257 ms
94,208 KB
testcase_14 AC 241 ms
92,032 KB
testcase_15 AC 182 ms
87,424 KB
testcase_16 AC 110 ms
78,208 KB
testcase_17 AC 192 ms
87,680 KB
testcase_18 AC 315 ms
96,512 KB
testcase_19 AC 272 ms
94,592 KB
testcase_20 AC 261 ms
94,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
sys.setrecursionlimit(10**6)

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

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