結果

問題 No.196 典型DP (1)
ユーザー roarisroaris
提出日時 2020-11-24 04:35:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 641 bytes
コンパイル時間 524 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 90,112 KB
最終ジャッジ日時 2024-07-23 18:23:08
合計ジャッジ時間 4,667 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,216 KB
testcase_01 AC 37 ms
52,200 KB
testcase_02 AC 37 ms
52,932 KB
testcase_03 AC 38 ms
52,548 KB
testcase_04 AC 38 ms
52,568 KB
testcase_05 AC 38 ms
53,068 KB
testcase_06 AC 38 ms
52,336 KB
testcase_07 AC 38 ms
52,476 KB
testcase_08 AC 37 ms
52,680 KB
testcase_09 AC 37 ms
53,148 KB
testcase_10 AC 38 ms
53,532 KB
testcase_11 AC 37 ms
52,820 KB
testcase_12 AC 41 ms
59,488 KB
testcase_13 AC 44 ms
59,424 KB
testcase_14 AC 46 ms
61,152 KB
testcase_15 AC 47 ms
62,208 KB
testcase_16 AC 55 ms
66,636 KB
testcase_17 AC 75 ms
76,604 KB
testcase_18 AC 68 ms
72,472 KB
testcase_19 AC 76 ms
74,772 KB
testcase_20 AC 88 ms
76,184 KB
testcase_21 AC 113 ms
76,684 KB
testcase_22 AC 79 ms
74,596 KB
testcase_23 AC 89 ms
77,392 KB
testcase_24 AC 90 ms
77,172 KB
testcase_25 AC 89 ms
77,380 KB
testcase_26 AC 99 ms
89,924 KB
testcase_27 AC 98 ms
89,544 KB
testcase_28 AC 99 ms
90,112 KB
testcase_29 AC 97 ms
89,976 KB
testcase_30 AC 97 ms
90,076 KB
testcase_31 AC 116 ms
76,444 KB
testcase_32 AC 116 ms
76,568 KB
testcase_33 AC 116 ms
76,640 KB
testcase_34 AC 115 ms
76,312 KB
testcase_35 AC 115 ms
76,296 KB
testcase_36 AC 116 ms
76,832 KB
testcase_37 AC 112 ms
77,004 KB
testcase_38 AC 118 ms
77,000 KB
testcase_39 AC 112 ms
76,380 KB
testcase_40 AC 116 ms
76,564 KB
testcase_41 AC 38 ms
52,752 KB
testcase_42 AC 38 ms
52,864 KB
testcase_43 AC 39 ms
52,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def dfs(v, pv):
    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