結果

問題 No.763 Noelちゃんと木遊び
ユーザー neko0774neko0774
提出日時 2023-01-30 01:14:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 549 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 36,992 KB
最終ジャッジ日時 2024-06-29 19:45:15
合計ジャッジ時間 8,753 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 170 ms
19,584 KB
testcase_02 AC 388 ms
31,104 KB
testcase_03 AC 263 ms
24,704 KB
testcase_04 AC 192 ms
20,608 KB
testcase_05 AC 253 ms
24,064 KB
testcase_06 AC 472 ms
35,328 KB
testcase_07 AC 472 ms
34,304 KB
testcase_08 AC 268 ms
25,216 KB
testcase_09 AC 178 ms
20,480 KB
testcase_10 AC 84 ms
14,464 KB
testcase_11 AC 476 ms
35,712 KB
testcase_12 AC 423 ms
32,896 KB
testcase_13 AC 410 ms
32,640 KB
testcase_14 AC 368 ms
30,080 KB
testcase_15 AC 258 ms
24,448 KB
testcase_16 AC 62 ms
13,184 KB
testcase_17 AC 256 ms
24,448 KB
testcase_18 AC 473 ms
35,456 KB
testcase_19 AC 422 ms
33,024 KB
testcase_20 AC 428 ms
33,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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