結果

問題 No.196 典型DP (1)
ユーザー sibasyunsibasyun
提出日時 2024-02-24 20:36:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 1,143 bytes
コンパイル時間 476 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 89,592 KB
最終ジャッジ日時 2024-09-29 10:16:44
合計ジャッジ時間 6,176 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
55,404 KB
testcase_01 AC 46 ms
55,664 KB
testcase_02 AC 46 ms
54,824 KB
testcase_03 AC 45 ms
54,956 KB
testcase_04 AC 44 ms
55,352 KB
testcase_05 AC 45 ms
54,660 KB
testcase_06 AC 44 ms
55,144 KB
testcase_07 AC 44 ms
54,364 KB
testcase_08 AC 44 ms
55,752 KB
testcase_09 AC 46 ms
56,208 KB
testcase_10 AC 45 ms
55,300 KB
testcase_11 AC 46 ms
56,200 KB
testcase_12 AC 50 ms
62,372 KB
testcase_13 AC 51 ms
62,896 KB
testcase_14 AC 53 ms
64,596 KB
testcase_15 AC 59 ms
64,636 KB
testcase_16 AC 69 ms
70,104 KB
testcase_17 AC 91 ms
76,736 KB
testcase_18 AC 95 ms
77,268 KB
testcase_19 AC 102 ms
76,924 KB
testcase_20 AC 109 ms
77,108 KB
testcase_21 AC 138 ms
77,124 KB
testcase_22 AC 108 ms
77,408 KB
testcase_23 AC 120 ms
78,960 KB
testcase_24 AC 114 ms
79,428 KB
testcase_25 AC 118 ms
78,144 KB
testcase_26 AC 122 ms
88,976 KB
testcase_27 AC 125 ms
89,292 KB
testcase_28 AC 122 ms
89,592 KB
testcase_29 AC 122 ms
88,888 KB
testcase_30 AC 126 ms
89,476 KB
testcase_31 AC 144 ms
77,080 KB
testcase_32 AC 142 ms
77,280 KB
testcase_33 AC 141 ms
77,152 KB
testcase_34 AC 140 ms
76,884 KB
testcase_35 AC 142 ms
77,148 KB
testcase_36 AC 143 ms
76,860 KB
testcase_37 AC 140 ms
77,436 KB
testcase_38 AC 143 ms
77,340 KB
testcase_39 AC 141 ms
77,204 KB
testcase_40 AC 140 ms
77,300 KB
testcase_41 AC 44 ms
54,972 KB
testcase_42 AC 45 ms
55,100 KB
testcase_43 AC 44 ms
56,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import io
import sys
import bisect
import math
from itertools import permutations, combinations
from heapq import heappush, heappop
from collections import deque
from collections import defaultdict as dd
sys.setrecursionlimit(10**7+10)

# mod = 998244353
mod = 10**9+7

_INPUT = """\
6 1
0 1
0 2
1 3
2 4
2 5

"""



def main():
    N, K = map(int, input().split())
    G = [[]for _ in range(N)]
    for _ in range(N-1):
        a, b = map(int, input().split())
        G[a].append(b)
        G[b].append(a)
    def dfs(now, par):
        dp = [1] # 黒が0個となる場合の数
        for nxt in G[now]:
            if nxt == par:continue

            ndp = dfs(nxt, now)
            merged = [0]*(len(dp)+len(ndp)-1)

            for i in range(len(dp)):
                for j in range(len(ndp)):
                    merged[i+j] += dp[i]*ndp[j]
                    merged[i+j] %= mod
            dp = merged
        dp.append(dp[-1]) # 自分以外全部黒と、全部黒は同数
        return dp
    
    print(dfs(0, -1)[K])   
                            
if __name__ == "__main__":
    # sys.stdin = io.StringIO(_INPUT)
    main()
0