結果

問題 No.196 典型DP (1)
ユーザー 草苺奶昔草苺奶昔
提出日時 2023-02-02 23:43:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 1,093 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 83,232 KB
最終ジャッジ日時 2024-07-02 09:34:35
合計ジャッジ時間 5,236 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,808 KB
testcase_01 AC 37 ms
52,476 KB
testcase_02 AC 37 ms
52,600 KB
testcase_03 AC 37 ms
54,060 KB
testcase_04 AC 38 ms
53,764 KB
testcase_05 AC 37 ms
52,524 KB
testcase_06 AC 36 ms
53,480 KB
testcase_07 AC 36 ms
53,200 KB
testcase_08 AC 37 ms
53,784 KB
testcase_09 AC 38 ms
52,340 KB
testcase_10 AC 38 ms
53,828 KB
testcase_11 AC 41 ms
59,272 KB
testcase_12 AC 41 ms
58,952 KB
testcase_13 AC 44 ms
60,724 KB
testcase_14 AC 45 ms
61,068 KB
testcase_15 AC 55 ms
67,076 KB
testcase_16 AC 56 ms
66,484 KB
testcase_17 AC 67 ms
71,924 KB
testcase_18 AC 82 ms
77,032 KB
testcase_19 AC 87 ms
76,940 KB
testcase_20 AC 95 ms
77,620 KB
testcase_21 AC 96 ms
77,504 KB
testcase_22 AC 93 ms
77,332 KB
testcase_23 AC 113 ms
79,676 KB
testcase_24 AC 108 ms
78,464 KB
testcase_25 AC 111 ms
78,000 KB
testcase_26 AC 117 ms
83,232 KB
testcase_27 AC 116 ms
81,128 KB
testcase_28 AC 115 ms
81,332 KB
testcase_29 AC 118 ms
80,700 KB
testcase_30 AC 116 ms
81,628 KB
testcase_31 AC 135 ms
76,736 KB
testcase_32 AC 132 ms
76,948 KB
testcase_33 AC 134 ms
76,744 KB
testcase_34 AC 135 ms
76,940 KB
testcase_35 AC 135 ms
76,936 KB
testcase_36 AC 134 ms
77,044 KB
testcase_37 AC 100 ms
77,096 KB
testcase_38 AC 139 ms
77,288 KB
testcase_39 AC 129 ms
77,084 KB
testcase_40 AC 135 ms
76,844 KB
testcase_41 AC 36 ms
53,028 KB
testcase_42 AC 36 ms
53,072 KB
testcase_43 AC 37 ms
52,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(int(1e9))
input = lambda: sys.stdin.readline().rstrip("\r\n")
MOD = int(1e9 + 7)

if __name__ == "__main__":
    n, k = map(int, input().split())
    adjList = [[] for _ in range(n)]
    for _ in range(n - 1):
        u, v = map(int, input().split())
        adjList[u].append(v)
        adjList[v].append(u)

    def dfs(cur: int, pre: int) -> None:
        subSize[cur] = 1
        dp[cur] = [1, 1]
        for next in adjList[cur]:
            if next == pre:
                continue
            dfs(next, cur)
            merged = [0] * (subSize[cur] + subSize[next] + 1)
            for i in range(subSize[cur] + 1):
                for j in range(subSize[next] + 1):
                    if i != subSize[cur]:  # 不涂黑当前节点
                        merged[i + j] += dp[cur][i] * dp[next][j]
                        merged[i + j] %= MOD
            subSize[cur] += subSize[next]
            dp[cur] = merged
        dp[cur][-1] = 1  # 涂黑当前节点

    subSize = [0] * n
    dp = [[] for _ in range(n)]
    dfs(0, -1)
    print(dp[0][k])
0