結果

問題 No.763 Noelちゃんと木遊び
ユーザー NoneNone
提出日時 2021-04-14 03:39:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 274 ms / 2,000 ms
コード長 918 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 110,744 KB
最終ジャッジ日時 2024-06-30 04:40:39
合計ジャッジ時間 5,896 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 181 ms
110,744 KB
testcase_01 AC 148 ms
84,916 KB
testcase_02 AC 223 ms
96,464 KB
testcase_03 AC 181 ms
91,636 KB
testcase_04 AC 150 ms
86,120 KB
testcase_05 AC 188 ms
90,860 KB
testcase_06 AC 265 ms
103,420 KB
testcase_07 AC 246 ms
101,208 KB
testcase_08 AC 185 ms
91,840 KB
testcase_09 AC 142 ms
86,184 KB
testcase_10 AC 120 ms
79,656 KB
testcase_11 AC 274 ms
98,716 KB
testcase_12 AC 251 ms
100,420 KB
testcase_13 AC 241 ms
100,708 KB
testcase_14 AC 219 ms
94,828 KB
testcase_15 AC 178 ms
91,320 KB
testcase_16 AC 100 ms
77,940 KB
testcase_17 AC 175 ms
91,252 KB
testcase_18 AC 269 ms
104,624 KB
testcase_19 AC 255 ms
100,884 KB
testcase_20 AC 233 ms
100,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def dfs(start=0,goal=None):
    parents={}
    p,t=start,0
    parents[p]=-2
    next_set=[(~p,t),(p,t)]
    if p==goal:
        return t
    while next_set:
        p,t=next_set.pop()
        if p>=0:
            for q in edges[p]:
                if q in parents:
                    continue
                if q==goal:
                    return t+1
                parents[q]=p
                next_set.append((~q,t+1))
                next_set.append((q,t+1))
        else: # 帰りがけ処理
            p=~p
            for q in edges[p]:
                dp[0][p]+=max(dp[1][q],dp[0][q])
                dp[1][p]+=dp[0][q]
            dp[1][p]+=1
    return -1

N=int(input())

edges=[[] for _ in range(N)]
for _ in range(N-1):
    a,b=map(int, input().split())
    a,b=a-1,b-1
    edges[a].append(b)
    edges[b].append(a)

dp=[[0]*N for _ in range(2)]

dfs(start=0,goal=None)

print(max(dp[0][0],dp[1][0]))
0