結果

問題 No.196 典型DP (1)
ユーザー rpy3cpprpy3cpp
提出日時 2015-09-09 12:17:51
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 955 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 83,200 KB
最終ジャッジ日時 2024-07-19 05:03:29
合計ジャッジ時間 5,355 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 43 ms
51,968 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 36 ms
52,224 KB
testcase_04 AC 42 ms
52,352 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 40 ms
52,096 KB
testcase_07 AC 39 ms
51,840 KB
testcase_08 AC 38 ms
52,096 KB
testcase_09 AC 41 ms
51,840 KB
testcase_10 AC 40 ms
52,096 KB
testcase_11 AC 40 ms
52,224 KB
testcase_12 AC 44 ms
58,112 KB
testcase_13 AC 46 ms
59,136 KB
testcase_14 AC 49 ms
60,544 KB
testcase_15 AC 63 ms
66,432 KB
testcase_16 AC 83 ms
75,776 KB
testcase_17 AC 103 ms
76,416 KB
testcase_18 AC 124 ms
77,312 KB
testcase_19 AC 137 ms
77,056 KB
testcase_20 AC 162 ms
77,824 KB
testcase_21 AC 177 ms
77,696 KB
testcase_22 AC 167 ms
77,796 KB
testcase_23 AC 167 ms
83,200 KB
testcase_24 AC 165 ms
80,512 KB
testcase_25 AC 164 ms
80,896 KB
testcase_26 AC 71 ms
69,632 KB
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 78 ms
69,888 KB
testcase_31 AC 67 ms
68,480 KB
testcase_32 AC 171 ms
76,928 KB
testcase_33 AC 171 ms
76,928 KB
testcase_34 AC 169 ms
76,800 KB
testcase_35 AC 68 ms
68,096 KB
testcase_36 AC 67 ms
68,480 KB
testcase_37 AC 145 ms
76,928 KB
testcase_38 AC 160 ms
76,672 KB
testcase_39 AC 154 ms
77,312 KB
testcase_40 AC 67 ms
68,352 KB
testcase_41 AC 36 ms
51,968 KB
testcase_42 AC 39 ms
52,352 KB
testcase_43 AC 40 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def read_data():
    N, K = map(int, input().split())
    Es = [[] for i in range(N)]
    for i in range(N - 1):
        a, b = map(int, input().split())
        Es[a].append(b)
        Es[b].append(a)
    return N, K, Es


def solve(N, K, Es):
    if K == 0:
        return 1
    if N == K:
        return 1
    root = 0
    parent = -1
    lst = f(root, parent, Es)
    lst.append(1)
    return lst[K]


def f(node, parent, Es):
    if node and len(Es[node]) == 1:
        return [1, 1]
    lst = [1]
    for child in Es[node]:
        if child == parent:
            continue
        lst_c = f(child, node, Es)
        lst = merge(lst, lst_c)
    lst.append(1)
    return lst


def merge(lst1, lst2):
    mod = 10**9 + 7
    lst = [0] * (len(lst1) + len(lst2) - 1)
    for i, vi in enumerate(lst1):
        for j, vj in enumerate(lst2):
            lst[i + j] += vi * vj
    return [v % mod for v in lst]


N, K, Es = read_data()
print(solve(N, K, Es))
0