結果

問題 No.196 典型DP (1)
ユーザー uenokuuenoku
提出日時 2017-11-16 21:29:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,456 bytes
コンパイル時間 1,519 ms
コンパイル使用メモリ 170,824 KB
実行使用メモリ 39,976 KB
最終ジャッジ日時 2024-11-25 06:45:09
合計ジャッジ時間 22,824 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,632 KB
testcase_01 AC 2 ms
13,636 KB
testcase_02 AC 2 ms
13,640 KB
testcase_03 AC 1 ms
39,976 KB
testcase_04 AC 2 ms
13,636 KB
testcase_05 AC 2 ms
39,772 KB
testcase_06 AC 2 ms
13,632 KB
testcase_07 AC 2 ms
37,980 KB
testcase_08 AC 2 ms
13,632 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,824 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 3 ms
6,820 KB
testcase_14 AC 4 ms
6,816 KB
testcase_15 AC 27 ms
10,016 KB
testcase_16 AC 82 ms
14,252 KB
testcase_17 AC 169 ms
20,420 KB
testcase_18 AC 446 ms
26,740 KB
testcase_19 AC 331 ms
28,948 KB
testcase_20 AC 30 ms
33,156 KB
testcase_21 AC 63 ms
33,272 KB
testcase_22 AC 18 ms
33,008 KB
testcase_23 TLE -
testcase_24 AC 198 ms
33,276 KB
testcase_25 TLE -
testcase_26 AC 13 ms
33,648 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 10 ms
33,124 KB
testcase_32 AC 99 ms
33,000 KB
testcase_33 AC 158 ms
32,988 KB
testcase_34 AC 227 ms
33,120 KB
testcase_35 AC 269 ms
32,852 KB
testcase_36 AC 10 ms
33,016 KB
testcase_37 AC 190 ms
33,280 KB
testcase_38 AC 147 ms
33,028 KB
testcase_39 AC 188 ms
33,292 KB
testcase_40 AC 279 ms
33,132 KB
testcase_41 AC 2 ms
6,816 KB
testcase_42 AC 2 ms
6,816 KB
testcase_43 AC 2 ms
39,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (lli i = 0; i < (n); i++)
#define rrep(i, n) for (lli i = (n)-1; i >= 0; i--)
using namespace std;
using lli = long long int;
lli mod = 1e9 + 7;
vector<int> e[2005];
lli dp[2005][2005] = {};
lli memo[2005] = {};

int n, k;
// iの部分木でj個色が塗られている場合の数
int dfs(int cur, int par)
{
    if (cur != 0 and e[cur].size() == 1) {
        // leaf
        dp[cur][1] = 1;
        dp[cur][0] = 1;
        memo[cur] = 1;
        return 1;
    }
    int size = 1;
    for (auto s : e[cur]) {
        if (s == par)
            continue;
        size += dfs(s, cur);
    }
    dp[cur][0] = 1;
    for (auto s : e[cur]) {
        if (s == par)
            continue;
        vector<lli> tmp(n + 1, 0);

        rep(i, k + 1)
        {
            tmp[i] = dp[cur][i];
        }
        vector<lli> hoge(n + 1, 0);
        rep(i, memo[s] + 1)
        {
            rep(j, k + 1)
            {
                if (i + j > k)
                    continue;
                hoge[i + j] += (tmp[j] % mod * dp[s][i]) % mod;
                hoge[i + j] %= mod;
            }
        }

        rep(i, k + 1) dp[cur][i] = hoge[i];
    }
    dp[cur][size] = 1;
    memo[cur] = size;
    return size;
}
int main()
{
    cin >> n >> k;
    int a, b;
    rep(i, n - 1)
    {
        cin >> a >> b;
        e[a].push_back(b);
        e[b].push_back(a);
    }
    dfs(0, -1);

    cout << dp[0][k] << endl;
}
0