結果

問題 No.196 典型DP (1)
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-26 19:31:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 1,000 bytes
コンパイル時間 722 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 80,968 KB
最終ジャッジ日時 2024-09-24 23:22:04
合計ジャッジ時間 4,897 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,868 KB
testcase_01 AC 37 ms
53,076 KB
testcase_02 AC 36 ms
53,644 KB
testcase_03 AC 36 ms
52,412 KB
testcase_04 AC 35 ms
53,284 KB
testcase_05 AC 36 ms
52,440 KB
testcase_06 AC 36 ms
53,356 KB
testcase_07 AC 37 ms
52,860 KB
testcase_08 AC 37 ms
53,496 KB
testcase_09 AC 36 ms
53,408 KB
testcase_10 AC 37 ms
52,948 KB
testcase_11 AC 40 ms
59,496 KB
testcase_12 AC 43 ms
59,920 KB
testcase_13 AC 43 ms
60,716 KB
testcase_14 AC 41 ms
60,852 KB
testcase_15 AC 48 ms
62,684 KB
testcase_16 AC 54 ms
66,592 KB
testcase_17 AC 66 ms
73,156 KB
testcase_18 AC 70 ms
73,536 KB
testcase_19 AC 77 ms
74,984 KB
testcase_20 AC 80 ms
74,012 KB
testcase_21 AC 111 ms
77,316 KB
testcase_22 AC 84 ms
76,896 KB
testcase_23 AC 94 ms
78,544 KB
testcase_24 AC 91 ms
78,372 KB
testcase_25 AC 92 ms
77,772 KB
testcase_26 AC 95 ms
80,388 KB
testcase_27 AC 97 ms
80,756 KB
testcase_28 AC 93 ms
80,608 KB
testcase_29 AC 95 ms
80,120 KB
testcase_30 AC 92 ms
80,968 KB
testcase_31 AC 135 ms
77,032 KB
testcase_32 AC 136 ms
76,896 KB
testcase_33 AC 135 ms
76,884 KB
testcase_34 AC 135 ms
77,044 KB
testcase_35 AC 136 ms
77,024 KB
testcase_36 AC 131 ms
77,216 KB
testcase_37 AC 88 ms
77,344 KB
testcase_38 AC 136 ms
76,952 KB
testcase_39 AC 124 ms
76,984 KB
testcase_40 AC 131 ms
76,832 KB
testcase_41 AC 35 ms
53,292 KB
testcase_42 AC 36 ms
53,672 KB
testcase_43 AC 35 ms
52,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)
mod = 10 ** 9 + 7

N, K = map(int, input().split())
edge = [[] for _ in range(N)]
for _ in range(N - 1):
    a, b = map(int, input().split())
    edge[a].append(b)
    edge[b].append(a)

# topoligical sort
par = [-1] * N
topo = []
que = [0]
while que:
    s = que.pop()
    topo.append(s)
    for t in edge[s]:
        if t == par[s]:
            continue
        par[t] = s
        que.append(t)


dp = [-1] * N  # dp[v][i], vが根の部分木で黒で塗るノードがi個の数
sz = [0] * N
for s in topo[::-1]:
    sz[s] = 1
    dp[s] = [0] * 2
    dp[s][0] = 1
    for t in edge[s]:
        if t == par[s]:
            continue
        merge = [0] * (sz[s] + sz[t] + 1)
        for i, x in enumerate(dp[s]):
            for j, y in enumerate(dp[t]):
                merge[i+j] += x * y
                merge[i+j] %= mod
        sz[s] += sz[t]
        dp[s] = merge
    dp[s][sz[s]] = dp[s][sz[s] - 1]

print(dp[0][K])
0