結果

問題 No.196 典型DP (1)
ユーザー dddggdddgg
提出日時 2024-01-19 15:51:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 630 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 91,604 KB
最終ジャッジ日時 2024-09-28 03:25:27
合計ジャッジ時間 5,135 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,492 KB
testcase_01 AC 39 ms
52,868 KB
testcase_02 AC 37 ms
52,488 KB
testcase_03 AC 35 ms
53,536 KB
testcase_04 AC 36 ms
52,428 KB
testcase_05 AC 36 ms
52,816 KB
testcase_06 AC 37 ms
53,448 KB
testcase_07 AC 38 ms
53,300 KB
testcase_08 AC 37 ms
52,688 KB
testcase_09 AC 35 ms
53,356 KB
testcase_10 AC 36 ms
52,908 KB
testcase_11 AC 40 ms
52,700 KB
testcase_12 AC 40 ms
59,096 KB
testcase_13 AC 40 ms
61,144 KB
testcase_14 AC 45 ms
60,916 KB
testcase_15 AC 48 ms
62,104 KB
testcase_16 AC 59 ms
67,588 KB
testcase_17 AC 80 ms
75,900 KB
testcase_18 AC 84 ms
76,336 KB
testcase_19 AC 88 ms
76,928 KB
testcase_20 AC 95 ms
76,588 KB
testcase_21 AC 127 ms
76,808 KB
testcase_22 AC 94 ms
76,368 KB
testcase_23 AC 104 ms
78,168 KB
testcase_24 AC 99 ms
78,200 KB
testcase_25 AC 101 ms
77,416 KB
testcase_26 AC 111 ms
89,820 KB
testcase_27 AC 107 ms
89,924 KB
testcase_28 AC 110 ms
91,604 KB
testcase_29 AC 115 ms
89,864 KB
testcase_30 AC 107 ms
89,532 KB
testcase_31 AC 132 ms
76,648 KB
testcase_32 AC 133 ms
76,420 KB
testcase_33 AC 136 ms
76,764 KB
testcase_34 AC 131 ms
76,424 KB
testcase_35 AC 133 ms
76,348 KB
testcase_36 AC 140 ms
76,668 KB
testcase_37 AC 130 ms
76,996 KB
testcase_38 AC 136 ms
76,568 KB
testcase_39 AC 129 ms
76,476 KB
testcase_40 AC 137 ms
76,684 KB
testcase_41 AC 36 ms
53,380 KB
testcase_42 AC 37 ms
53,068 KB
testcase_43 AC 39 ms
52,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 9)
MOD = 10 ** 9 + 7

n, k = map(int, input().split())
edges = [[] for _ in range(n)]
for _ in range(n - 1):
    u, v = map(int, input().split())
    edges[u].append(v)
    edges[v].append(u)

def dfs(pos, bpos):
    dp = [1]
    for npos in edges[pos]:
        if npos == bpos:
            continue
        tmp= dfs(npos, pos)
        ndp = [0] * (len(dp)+len(tmp)-1)
        for i, v in enumerate(dp):
            for j, u in enumerate(tmp):
                ndp[i + j] += u * v
                ndp[i + j] %= MOD
        dp = ndp
    dp.append(1)
    return dp

dp= dfs(0, -1)
print(dp[k])
0