結果

問題 No.196 典型DP (1)
ユーザー roarisroaris
提出日時 2020-11-24 04:34:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 661 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 91,640 KB
最終ジャッジ日時 2024-07-23 18:22:43
合計ジャッジ時間 4,691 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,400 KB
testcase_01 AC 37 ms
52,284 KB
testcase_02 AC 37 ms
52,236 KB
testcase_03 AC 37 ms
53,940 KB
testcase_04 AC 38 ms
52,496 KB
testcase_05 AC 37 ms
52,928 KB
testcase_06 AC 37 ms
53,660 KB
testcase_07 AC 38 ms
52,764 KB
testcase_08 AC 38 ms
52,200 KB
testcase_09 AC 38 ms
52,828 KB
testcase_10 AC 38 ms
52,988 KB
testcase_11 AC 38 ms
53,668 KB
testcase_12 AC 42 ms
58,084 KB
testcase_13 AC 43 ms
59,876 KB
testcase_14 AC 44 ms
60,188 KB
testcase_15 AC 47 ms
63,128 KB
testcase_16 AC 53 ms
66,276 KB
testcase_17 AC 75 ms
76,764 KB
testcase_18 AC 67 ms
71,664 KB
testcase_19 AC 72 ms
74,384 KB
testcase_20 AC 85 ms
76,348 KB
testcase_21 AC 109 ms
76,608 KB
testcase_22 AC 78 ms
74,936 KB
testcase_23 AC 91 ms
77,464 KB
testcase_24 AC 88 ms
77,032 KB
testcase_25 AC 88 ms
77,160 KB
testcase_26 AC 100 ms
90,372 KB
testcase_27 AC 97 ms
89,532 KB
testcase_28 AC 96 ms
90,604 KB
testcase_29 AC 96 ms
90,504 KB
testcase_30 AC 96 ms
91,640 KB
testcase_31 AC 115 ms
76,268 KB
testcase_32 AC 114 ms
76,244 KB
testcase_33 AC 114 ms
76,620 KB
testcase_34 AC 114 ms
76,488 KB
testcase_35 AC 114 ms
76,424 KB
testcase_36 AC 115 ms
76,336 KB
testcase_37 AC 111 ms
76,484 KB
testcase_38 AC 115 ms
76,904 KB
testcase_39 AC 111 ms
77,072 KB
testcase_40 AC 116 ms
76,856 KB
testcase_41 AC 38 ms
52,376 KB
testcase_42 AC 37 ms
52,552 KB
testcase_43 AC 38 ms
53,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
sys.setrecursionlimit(2010)

def dfs(v, pv):
    global ans
    
    dp = [1]
    
    for nv in G[v]:
        if nv==pv:
            continue
        
        ndp = dfs(nv, v)
        merge = [0]*(len(dp)+len(ndp)-1)
        
        for i in range(len(dp)):
            for j in range(len(ndp)):
                merge[i+j] = (merge[i+j]+dp[i]*ndp[j])%MOD
        
        dp = merge
        
    dp.append(dp[-1])
    return dp

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)

MOD = 10**9+7
print(dfs(0, -1)[K])
0