結果

問題 No.196 典型DP (1)
ユーザー rpy3cpprpy3cpp
提出日時 2015-09-09 12:06:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 864 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-07-19 05:02:39
合計ジャッジ時間 15,846 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 RE -
testcase_03 AC 28 ms
10,752 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 28 ms
10,624 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 28 ms
10,624 KB
testcase_12 RE -
testcase_13 AC 28 ms
10,624 KB
testcase_14 AC 31 ms
10,624 KB
testcase_15 RE -
testcase_16 AC 70 ms
11,008 KB
testcase_17 RE -
testcase_18 AC 199 ms
11,264 KB
testcase_19 AC 255 ms
11,264 KB
testcase_20 AC 358 ms
11,264 KB
testcase_21 AC 351 ms
11,264 KB
testcase_22 RE -
testcase_23 AC 446 ms
11,392 KB
testcase_24 AC 437 ms
11,520 KB
testcase_25 AC 434 ms
11,392 KB
testcase_26 AC 35 ms
11,008 KB
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 1,190 ms
11,136 KB
testcase_32 AC 1,204 ms
11,136 KB
testcase_33 AC 1,198 ms
11,264 KB
testcase_34 AC 1,209 ms
11,392 KB
testcase_35 AC 1,199 ms
11,392 KB
testcase_36 AC 1,109 ms
11,392 KB
testcase_37 AC 384 ms
11,264 KB
testcase_38 AC 1,135 ms
11,392 KB
testcase_39 AC 960 ms
11,264 KB
testcase_40 AC 1,185 ms
11,392 KB
testcase_41 AC 27 ms
10,752 KB
testcase_42 AC 27 ms
10,752 KB
testcase_43 AC 27 ms
10,624 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):
    root = 0
    parent = -1
    lst = f(root, parent, Es)
    return lst[K]


def f(node, parent, Es):
    if 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