結果

問題 No.196 典型DP (1)
ユーザー neterukunneterukun
提出日時 2019-12-31 00:52:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 1,316 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 110,336 KB
最終ジャッジ日時 2024-11-16 10:18:34
合計ジャッジ時間 6,916 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,608 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 38 ms
51,956 KB
testcase_03 AC 38 ms
52,480 KB
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 40 ms
51,968 KB
testcase_07 AC 40 ms
52,224 KB
testcase_08 AC 40 ms
52,096 KB
testcase_09 AC 38 ms
52,280 KB
testcase_10 AC 40 ms
52,864 KB
testcase_11 AC 45 ms
58,240 KB
testcase_12 AC 47 ms
59,904 KB
testcase_13 AC 48 ms
60,288 KB
testcase_14 AC 49 ms
60,800 KB
testcase_15 AC 60 ms
65,536 KB
testcase_16 AC 73 ms
73,088 KB
testcase_17 AC 106 ms
85,344 KB
testcase_18 AC 132 ms
93,496 KB
testcase_19 AC 143 ms
98,472 KB
testcase_20 AC 151 ms
102,604 KB
testcase_21 AC 185 ms
108,416 KB
testcase_22 AC 153 ms
102,656 KB
testcase_23 AC 179 ms
110,336 KB
testcase_24 AC 166 ms
109,196 KB
testcase_25 AC 172 ms
109,056 KB
testcase_26 AC 184 ms
110,152 KB
testcase_27 AC 187 ms
109,952 KB
testcase_28 AC 183 ms
109,912 KB
testcase_29 AC 184 ms
109,996 KB
testcase_30 AC 184 ms
110,336 KB
testcase_31 AC 202 ms
108,772 KB
testcase_32 AC 204 ms
108,416 KB
testcase_33 AC 208 ms
108,264 KB
testcase_34 AC 205 ms
108,332 KB
testcase_35 AC 205 ms
108,288 KB
testcase_36 AC 202 ms
108,416 KB
testcase_37 AC 164 ms
108,436 KB
testcase_38 AC 207 ms
108,416 KB
testcase_39 AC 199 ms
108,160 KB
testcase_40 AC 202 ms
108,300 KB
testcase_41 AC 40 ms
52,480 KB
testcase_42 AC 40 ms
52,480 KB
testcase_43 AC 39 ms
52,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)


n, k = map(int, input().split())
info = [list(map(int, input().split())) for i in range(n-1)]
MOD = 10**9 + 7

tree = [[] for i in range(n)]
for i in range(n-1):
    tree[info[i][0]].append(info[i][1])
    tree[info[i][1]].append(info[i][0])

dp = [[0]*(n+1) for i in range(n)]

cnt_v = [1] *n
def solve(prev_pos, pos):
    # dfsで辺を葉の方向へと辿る
    for next_pos in tree[pos]:
        if prev_pos == next_pos:
            continue
        solve(pos, next_pos)
    
    # 頂点posに対して、next_posを根とする部分木をマージしていく
    dp[pos][0] = 1
    for next_pos in tree[pos]:
        if prev_pos == next_pos:
            continue
        
        tmp = [0] * (cnt_v[pos] + cnt_v[next_pos] + 1)
        # マージされる側に存在する辺の本数
        for i in range(cnt_v[pos] + 1):
            # マージする側に存在する辺の本数
            for j in range(cnt_v[next_pos] + 1):
                # マージの内容
                tmp[i+j] += dp[pos][i] * dp[next_pos][j]
                tmp[i+j] %= MOD

        cnt_v[pos] += cnt_v[next_pos]
        for j in range(cnt_v[pos]+1):
            dp[pos][j] = tmp[j]
            dp[pos][j] %= MOD
    dp[pos][cnt_v[pos]] = 1

solve(-1, 0)
print(dp[0][k] % MOD)
0