結果

問題 No.763 Noelちゃんと木遊び
ユーザー neterukunneterukun
提出日時 2019-05-06 00:55:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 614 ms / 2,000 ms
コード長 1,173 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 41,844 KB
最終ジャッジ日時 2024-06-26 07:58:08
合計ジャッジ時間 10,096 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 527 ms
41,844 KB
testcase_01 AC 203 ms
17,024 KB
testcase_02 AC 485 ms
25,344 KB
testcase_03 AC 322 ms
20,992 KB
testcase_04 AC 234 ms
17,920 KB
testcase_05 AC 319 ms
20,608 KB
testcase_06 AC 595 ms
28,672 KB
testcase_07 AC 560 ms
28,032 KB
testcase_08 AC 334 ms
21,376 KB
testcase_09 AC 233 ms
17,792 KB
testcase_10 AC 108 ms
13,568 KB
testcase_11 AC 614 ms
28,800 KB
testcase_12 AC 533 ms
27,008 KB
testcase_13 AC 534 ms
26,624 KB
testcase_14 AC 455 ms
24,832 KB
testcase_15 AC 315 ms
20,736 KB
testcase_16 AC 75 ms
12,416 KB
testcase_17 AC 329 ms
20,864 KB
testcase_18 AC 610 ms
28,672 KB
testcase_19 AC 540 ms
27,264 KB
testcase_20 AC 528 ms
27,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys


sys.setrecursionlimit(1000000)

n = int(input())
tree = [[] for i in range(n)]
for i in range(n-1):
    tmp1, tmp2 = map(int, input().split())
    tree[tmp1-1].append(tmp2-1)
    tree[tmp2-1].append(tmp1-1)
visited = [False]*n

#dpはその時点における最大の木の個数を表す
#dp_boolはその頂点が消されるか(=False)残るか(=True)を示す
dp = [0]*n
dp_bool = [True]*n

def dfs(i):
    visited[i] = True
    #葉のとき
    if all([visited[j] for j in tree[i]]):
        dp[i] = 1
        dp_bool[i] = True
    #葉でないとき
    else:
        tmp = True
        cnt_True = 0
        cnt_False = 0
        for j in tree[i]:
            if not visited[j]:
                dfs(j)
                if dp_bool[j]:
                    cnt_True += dp[j] - 1
                    cnt_False += dp[j]
                else:
                    cnt_True += dp[j]
                    cnt_False += dp[j]
        cnt_True += 1
        if cnt_True > cnt_False:
            dp[i] = cnt_True
            dp_bool[i] = True
        else:
            dp[i] = cnt_False
            dp_bool[i] = False

dfs((n-1)//2)
print(dp[(n-1)//2])
#print(dp_bool)
0