結果

問題 No.763 Noelちゃんと木遊び
ユーザー ayaoniayaoni
提出日時 2021-04-25 00:34:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,548 ms / 2,000 ms
コード長 1,089 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 365,568 KB
最終ジャッジ日時 2024-07-04 09:17:46
合計ジャッジ時間 13,205 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,548 ms
365,568 KB
testcase_01 AC 271 ms
103,516 KB
testcase_02 AC 517 ms
131,892 KB
testcase_03 AC 417 ms
114,336 KB
testcase_04 AC 342 ms
103,928 KB
testcase_05 AC 355 ms
117,376 KB
testcase_06 AC 459 ms
148,568 KB
testcase_07 AC 468 ms
142,148 KB
testcase_08 AC 348 ms
114,912 KB
testcase_09 AC 319 ms
104,820 KB
testcase_10 AC 252 ms
88,704 KB
testcase_11 AC 589 ms
149,676 KB
testcase_12 AC 517 ms
145,924 KB
testcase_13 AC 658 ms
145,880 KB
testcase_14 AC 509 ms
132,460 KB
testcase_15 AC 355 ms
118,912 KB
testcase_16 AC 163 ms
83,264 KB
testcase_17 AC 384 ms
121,216 KB
testcase_18 AC 716 ms
155,820 KB
testcase_19 AC 562 ms
139,928 KB
testcase_20 AC 554 ms
139,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from functools import lru_cache
sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N = I()
Graph = [[] for _ in range(N)]
for _ in range(N-1):
    u,v = MI()
    u -= 1
    v -= 1
    Graph[u].append(v)
    Graph[v].append(u)


@lru_cache(maxsize=None)
def dfs(i,par,r):
    res = 0
    if len(Graph[i]) == 1 and par == Graph[i][0]:
        if not r:
            res = 1
    else:
        if not r:
            res += 1
        for j in Graph[i]:
            if j != par:
                if r:
                    res += max(dfs(j,i,0),dfs(j,i,1))
                else:
                    res += max(dfs(j,i,0)-1,dfs(j,i,1))
    return res


ans = max(dfs(0,-1,0),dfs(0,-1,1))
print(ans)
0