結果

問題 No.196 典型DP (1)
ユーザー ayaoniayaoni
提出日時 2021-06-27 19:38:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 1,163 bytes
コンパイル時間 403 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 86,528 KB
最終ジャッジ日時 2024-06-25 11:55:45
合計ジャッジ時間 5,645 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 41 ms
52,480 KB
testcase_03 AC 41 ms
52,480 KB
testcase_04 AC 41 ms
52,480 KB
testcase_05 AC 42 ms
51,840 KB
testcase_06 AC 41 ms
51,840 KB
testcase_07 AC 40 ms
52,224 KB
testcase_08 AC 41 ms
52,352 KB
testcase_09 AC 40 ms
51,968 KB
testcase_10 AC 41 ms
52,480 KB
testcase_11 AC 46 ms
58,880 KB
testcase_12 AC 46 ms
58,880 KB
testcase_13 AC 49 ms
60,032 KB
testcase_14 AC 48 ms
60,052 KB
testcase_15 AC 61 ms
66,432 KB
testcase_16 AC 58 ms
65,152 KB
testcase_17 AC 73 ms
70,144 KB
testcase_18 AC 79 ms
72,960 KB
testcase_19 AC 90 ms
76,416 KB
testcase_20 AC 94 ms
76,720 KB
testcase_21 AC 104 ms
76,928 KB
testcase_22 AC 95 ms
76,544 KB
testcase_23 AC 115 ms
80,128 KB
testcase_24 AC 105 ms
76,928 KB
testcase_25 AC 110 ms
77,312 KB
testcase_26 AC 143 ms
86,144 KB
testcase_27 AC 145 ms
85,688 KB
testcase_28 AC 142 ms
85,824 KB
testcase_29 AC 142 ms
85,888 KB
testcase_30 AC 140 ms
86,528 KB
testcase_31 AC 135 ms
76,672 KB
testcase_32 AC 132 ms
76,524 KB
testcase_33 AC 134 ms
76,544 KB
testcase_34 AC 133 ms
76,548 KB
testcase_35 AC 135 ms
76,672 KB
testcase_36 AC 136 ms
77,184 KB
testcase_37 AC 100 ms
76,748 KB
testcase_38 AC 132 ms
76,624 KB
testcase_39 AC 131 ms
76,812 KB
testcase_40 AC 135 ms
76,820 KB
testcase_41 AC 41 ms
52,352 KB
testcase_42 AC 41 ms
52,352 KB
testcase_43 AC 42 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

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,K = MI()
Graph = [[] for _ in range(N)]
for _ in range(N-1):
    a,b = MI()
    Graph[a].append(b)
    Graph[b].append(a)
mod = 10**9+7


def DP(u,par):
    dp = [1,1]  # dp[i] = 頂点uを根とする部分木において、丁度i個の頂点が黒に塗られている様な塗り方
    for v in Graph[u]:
        if v == par:
            continue
        dp_v = DP(v,u)
        a = len(dp)
        b = len(dp_v)
        new_dp = [0]*(a+b-1)
        for i in range(a):
            for j in range(b):
                if i != a-1:
                    new_dp[i+j] += dp[i]*dp_v[j]
                    new_dp[i+j] %= mod
        new_dp[-1] = 1
        dp = new_dp
    return dp


ans = DP(0,-1)[K]
print(ans)
0