結果

問題 No.763 Noelちゃんと木遊び
ユーザー neko0774neko0774
提出日時 2023-01-30 01:15:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 361 ms / 2,000 ms
コード長 589 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 190,180 KB
最終ジャッジ日時 2024-06-29 19:46:54
合計ジャッジ時間 6,039 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 361 ms
190,180 KB
testcase_01 AC 159 ms
84,736 KB
testcase_02 AC 248 ms
93,924 KB
testcase_03 AC 189 ms
88,560 KB
testcase_04 AC 164 ms
85,492 KB
testcase_05 AC 183 ms
88,688 KB
testcase_06 AC 272 ms
97,220 KB
testcase_07 AC 272 ms
96,484 KB
testcase_08 AC 203 ms
89,204 KB
testcase_09 AC 155 ms
85,860 KB
testcase_10 AC 105 ms
79,912 KB
testcase_11 AC 283 ms
97,960 KB
testcase_12 AC 255 ms
96,092 KB
testcase_13 AC 261 ms
95,628 KB
testcase_14 AC 229 ms
92,580 KB
testcase_15 AC 189 ms
88,528 KB
testcase_16 AC 102 ms
79,120 KB
testcase_17 AC 189 ms
89,184 KB
testcase_18 AC 272 ms
97,184 KB
testcase_19 AC 258 ms
95,612 KB
testcase_20 AC 271 ms
96,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**7)
def main():
    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)]
    #o exist
    #1 not exist
    seen = [0]*N
    def dfs(x):
        seen[x] = 1
        for nx in G[x]:
            if seen[nx]: continue
            dfs(nx)
            dp[x][0] += max(dp[nx])
            dp[x][1] += max(dp[nx][0]+1, dp[nx][1])
    dfs(0)
    print(max(dp[0][0]+1, dp[0][1]))
main()
0