結果

問題 No.196 典型DP (1)
ユーザー tsutajtsutaj
提出日時 2018-06-09 12:48:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 15 ms / 2,000 ms
コード長 1,130 bytes
コンパイル時間 422 ms
コンパイル使用メモリ 54,572 KB
実行使用メモリ 34,280 KB
最終ジャッジ日時 2024-06-30 12:30:32
合計ジャッジ時間 1,922 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 3 ms
9,328 KB
testcase_16 AC 5 ms
13,700 KB
testcase_17 AC 6 ms
19,608 KB
testcase_18 AC 9 ms
26,292 KB
testcase_19 AC 10 ms
28,360 KB
testcase_20 AC 12 ms
32,600 KB
testcase_21 AC 12 ms
34,248 KB
testcase_22 AC 12 ms
32,616 KB
testcase_23 AC 13 ms
33,300 KB
testcase_24 AC 13 ms
32,892 KB
testcase_25 AC 13 ms
34,280 KB
testcase_26 AC 15 ms
34,212 KB
testcase_27 AC 15 ms
34,096 KB
testcase_28 AC 15 ms
34,076 KB
testcase_29 AC 15 ms
34,056 KB
testcase_30 AC 15 ms
34,096 KB
testcase_31 AC 14 ms
34,128 KB
testcase_32 AC 14 ms
34,264 KB
testcase_33 AC 14 ms
32,724 KB
testcase_34 AC 13 ms
32,604 KB
testcase_35 AC 13 ms
32,716 KB
testcase_36 AC 14 ms
32,720 KB
testcase_37 AC 12 ms
32,592 KB
testcase_38 AC 14 ms
32,616 KB
testcase_39 AC 14 ms
32,624 KB
testcase_40 AC 13 ms
34,256 KB
testcase_41 AC 2 ms
6,940 KB
testcase_42 AC 2 ms
6,940 KB
testcase_43 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <vector>
#include <algorithm>
using namespace std;
using Graph = vector< vector<int> >;

const long long int MOD = 1000000007LL;
int N, K, num[2010];
long long int dp[2010][2010];

void dfs(Graph &G, int cur, int par=-1) {
    num[cur] = 1;
    for(auto to : G[cur]) {
        if(to == par) continue;
        dfs(G, to, cur);
        num[cur] += num[to];
    }
}

void solve(Graph &G, int cur, int par=-1) {
    // 全く塗らない、全部塗る
    dp[cur][0] = dp[cur][ num[cur] ] = 1;
    int sum = 0;
    for(auto to : G[cur]) {
        if(to == par) continue;
        // cur は塗らない
        solve(G, to, cur);
        for(int k=sum; k>=0; k--) {
            for(int pt=num[to]; pt>=1; pt--) {
                (dp[cur][k+pt] += dp[cur][k] * dp[to][pt]) %= MOD;
            }
        }
        sum += num[to];
    }
}

int main() {
    scanf("%d%d", &N, &K);

    Graph G(N);
    for(int i=0; i<N-1; i++) {
        int u, v; scanf("%d%d", &u, &v);
        G[u].push_back(v);
        G[v].push_back(u);
    }

    dfs(G, 0);
    solve(G, 0);

    printf("%lld\n", dp[0][K]);
    return 0;
}
0