結果

問題 No.763 Noelちゃんと木遊び
ユーザー standstillstandstill
提出日時 2021-05-14 23:39:30
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 559 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 102,360 KB
最終ジャッジ日時 2024-10-02 05:46:17
合計ジャッジ時間 8,298 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 206 ms
85,076 KB
testcase_02 AC 359 ms
95,728 KB
testcase_03 AC 253 ms
89,856 KB
testcase_04 AC 217 ms
85,756 KB
testcase_05 AC 259 ms
88,952 KB
testcase_06 AC 374 ms
99,188 KB
testcase_07 AC 381 ms
98,988 KB
testcase_08 AC 257 ms
90,716 KB
testcase_09 AC 214 ms
85,696 KB
testcase_10 AC 139 ms
80,384 KB
testcase_11 AC 400 ms
99,332 KB
testcase_12 AC 359 ms
97,000 KB
testcase_13 AC 350 ms
96,760 KB
testcase_14 AC 312 ms
94,448 KB
testcase_15 AC 241 ms
89,216 KB
testcase_16 AC 122 ms
79,104 KB
testcase_17 AC 255 ms
89,472 KB
testcase_18 AC 381 ms
98,648 KB
testcase_19 AC 368 ms
96,992 KB
testcase_20 AC 357 ms
97,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
  N = int(input())
  G = [[] for _ in range(N + 5)]
  for i in range(N - 1):
    u, v = map(int, input().split())
    G[u].append(v)
    G[v].append(u)

  dp = [[0] * 5 for _ in range(N + 5)]
  root = 1
  dfs(root, -1, G, dp)
  ans = max(dp[root][0], dp[root][1])
  print(f"{ans}")
  return


def dfs(u, parent, G, dp):
  dp[u][0], dp[u][1] = 1, 0
  for v in G[u]:
    if v == parent: continue
    dfs(v, u, G, dp)
    dp[u][0] += max(dp[v][0] - 1, dp[v][1])
    dp[u][1] += max(dp[v][0], dp[v][1])

  return


if __name__ == '__main__':
  main()
0