結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 26 ms
10,496 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 26 ms
10,624 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 27 ms
10,624 KB
testcase_11 AC 27 ms
10,624 KB
testcase_12 RE -
testcase_13 AC 27 ms
10,624 KB
testcase_14 AC 28 ms
10,496 KB
testcase_15 RE -
testcase_16 AC 66 ms
10,752 KB
testcase_17 RE -
testcase_18 AC 194 ms
11,264 KB
testcase_19 AC 244 ms
11,264 KB
testcase_20 AC 350 ms
11,392 KB
testcase_21 AC 335 ms
11,136 KB
testcase_22 RE -
testcase_23 AC 428 ms
11,520 KB
testcase_24 AC 411 ms
11,264 KB
testcase_25 AC 413 ms
11,264 KB
testcase_26 AC 34 ms
11,136 KB
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 33 ms
11,008 KB
testcase_31 AC 32 ms
11,008 KB
testcase_32 AC 1,158 ms
11,264 KB
testcase_33 AC 1,172 ms
11,136 KB
testcase_34 AC 1,198 ms
11,136 KB
testcase_35 AC 32 ms
11,008 KB
testcase_36 AC 32 ms
10,880 KB
testcase_37 AC 366 ms
11,264 KB
testcase_38 AC 1,079 ms
11,264 KB
testcase_39 AC 952 ms
11,264 KB
testcase_40 AC 34 ms
11,008 KB
testcase_41 AC 27 ms
10,496 KB
testcase_42 AC 26 ms
10,496 KB
testcase_43 AC 25 ms
10,752 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 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