結果

問題 No.196 典型DP (1)
ユーザー Kiona1018Kiona1018
提出日時 2019-09-29 13:00:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 24 ms / 2,000 ms
コード長 1,320 bytes
コンパイル時間 1,636 ms
コンパイル使用メモリ 170,124 KB
実行使用メモリ 35,180 KB
最終ジャッジ日時 2024-10-03 04:27:12
合計ジャッジ時間 2,791 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 1 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 4 ms
8,760 KB
testcase_16 AC 5 ms
14,884 KB
testcase_17 AC 7 ms
20,404 KB
testcase_18 AC 9 ms
19,200 KB
testcase_19 AC 10 ms
22,016 KB
testcase_20 AC 11 ms
24,448 KB
testcase_21 AC 12 ms
23,552 KB
testcase_22 AC 11 ms
24,960 KB
testcase_23 AC 15 ms
29,312 KB
testcase_24 AC 13 ms
27,776 KB
testcase_25 AC 16 ms
27,648 KB
testcase_26 AC 16 ms
35,180 KB
testcase_27 AC 18 ms
35,072 KB
testcase_28 AC 20 ms
35,016 KB
testcase_29 AC 21 ms
35,020 KB
testcase_30 AC 24 ms
34,944 KB
testcase_31 AC 8 ms
11,648 KB
testcase_32 AC 14 ms
11,648 KB
testcase_33 AC 16 ms
11,648 KB
testcase_34 AC 17 ms
11,776 KB
testcase_35 AC 18 ms
11,776 KB
testcase_36 AC 10 ms
13,440 KB
testcase_37 AC 13 ms
23,040 KB
testcase_38 AC 15 ms
13,440 KB
testcase_39 AC 16 ms
16,128 KB
testcase_40 AC 18 ms
12,160 KB
testcase_41 AC 2 ms
5,248 KB
testcase_42 AC 1 ms
5,248 KB
testcase_43 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define rep(i,n,m) for(int i = (n); i <(m); i++)
#define rrep(i,n,m) for(int i = (n) - 1; i >=(m); i--)
using namespace std;
using ll = long long;
const int MAX_N = 2002;
const ll MOD = 1000000007;

vector<int> graph[MAX_N];
ll dp[MAX_N][MAX_N];
int num[MAX_N];
int k;

void dfs(int root, int par)
{

    dp[root][0] = 1;
    // dp[root][1] = 1;
    num[root] = 1;
    for (auto ch: graph[root])
    if (ch != par)
    {
        dfs(ch, root);

        vector<ll> dp_now(MAX_N, 0);
        rep(i, 0, num[ch]+1)
        {
            rep(j, 0, num[root]+1)
            {
                if (i+j > k) break;
                dp_now[i+j] += dp[root][j] * dp[ch][i];
                dp_now[i+j] %= MOD;
                // cout << root << ' ' << i << ' ' << j << " : "<< dp[root][j] << ' ' << dp[ch][i] << endl;
            }
        }
        
        num[root] += num[ch];
        rep(i, 0, MAX_N) dp[root][i] = dp_now[i];
    }
    dp[root][num[root]] = 1;
    // cout << root << ' ' << dp[root][0] << ' ' << dp[root][1] << endl;
}

int main()
{
    int n;
    cin >> n >> k;

    rep(i, 0, n-1)
    {
        int a, b;
        cin >> a >> b;
        // --a, --b;
        graph[a].push_back(b);
        graph[b].push_back(a);
    }
    dfs(0, -1);
    cout << dp[0][k] % MOD << endl;
    return 0;
}
0