結果

問題 No.196 典型DP (1)
ユーザー neterukunneterukun
提出日時 2019-06-15 17:02:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 241 ms / 2,000 ms
コード長 1,359 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 114,428 KB
最終ジャッジ日時 2024-11-19 03:01:07
合計ジャッジ時間 6,706 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,000 KB
testcase_01 AC 35 ms
53,212 KB
testcase_02 AC 33 ms
53,032 KB
testcase_03 AC 34 ms
52,536 KB
testcase_04 AC 34 ms
53,020 KB
testcase_05 AC 33 ms
53,668 KB
testcase_06 AC 35 ms
52,464 KB
testcase_07 AC 35 ms
53,572 KB
testcase_08 AC 40 ms
53,292 KB
testcase_09 AC 36 ms
53,436 KB
testcase_10 AC 38 ms
53,436 KB
testcase_11 AC 40 ms
58,928 KB
testcase_12 AC 45 ms
58,928 KB
testcase_13 AC 47 ms
61,080 KB
testcase_14 AC 42 ms
61,448 KB
testcase_15 AC 60 ms
72,048 KB
testcase_16 AC 86 ms
80,316 KB
testcase_17 AC 128 ms
86,504 KB
testcase_18 AC 160 ms
94,832 KB
testcase_19 AC 175 ms
99,968 KB
testcase_20 AC 240 ms
109,588 KB
testcase_21 AC 231 ms
110,416 KB
testcase_22 AC 241 ms
110,544 KB
testcase_23 AC 194 ms
114,428 KB
testcase_24 AC 191 ms
112,884 KB
testcase_25 AC 204 ms
113,256 KB
testcase_26 AC 159 ms
110,420 KB
testcase_27 AC 160 ms
110,708 KB
testcase_28 AC 159 ms
110,540 KB
testcase_29 AC 173 ms
111,088 KB
testcase_30 AC 173 ms
110,776 KB
testcase_31 AC 181 ms
108,832 KB
testcase_32 AC 184 ms
108,472 KB
testcase_33 AC 181 ms
108,936 KB
testcase_34 AC 179 ms
108,852 KB
testcase_35 AC 179 ms
108,960 KB
testcase_36 AC 182 ms
108,500 KB
testcase_37 AC 183 ms
108,920 KB
testcase_38 AC 176 ms
108,480 KB
testcase_39 AC 176 ms
108,348 KB
testcase_40 AC 182 ms
108,476 KB
testcase_41 AC 37 ms
52,544 KB
testcase_42 AC 38 ms
52,752 KB
testcase_43 AC 39 ms
53,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(100000)


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[pos][j] := 頂点posを根とする部分木から、
# ちょうどj個の頂点を条件2に従って黒で塗る方法の数
dp = [[0]*(n+1) for i in range(n)]

#0個の頂点を黒で塗る通り数は、それぞれの部分木に対して1通り
for i in range(n):
    dp[i][0] = 1

def dfs(pos):
    cnt = 1
    #部分木が葉のとき
    if all([visited[i] for i in tree[pos]]):
        dp[pos][cnt] = 1
        return cnt #cnt = 1

    #部分木が葉でないとき
    for child_pos in tree[pos]:
        if not visited[child_pos]:
            visited[child_pos] = True
            cnt_child = dfs(child_pos)
            tmp = [0]*(cnt + cnt_child + 1)
            for i in range(cnt+1):
                for j in range(cnt_child+1):
                    tmp[i+j] += dp[pos][i] * dp[child_pos][j]
            cnt += cnt_child
            for i in range(cnt+1):
                dp[pos][i] = tmp[i]
                dp[pos][i] %= MOD

    dp[pos][cnt] = 1 
    return cnt

visited = [False] * n
visited[0] = True
dfs(0)
print(dp[0][k] % MOD)
      
        
0