結果

問題 No.196 典型DP (1)
ユーザー veqccveqcc
提出日時 2019-02-21 22:11:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 1,387 bytes
コンパイル時間 817 ms
コンパイル使用メモリ 96,624 KB
実行使用メモリ 97,284 KB
最終ジャッジ日時 2024-11-21 07:17:12
合計ジャッジ時間 2,851 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 3 ms
6,816 KB
testcase_14 AC 3 ms
6,820 KB
testcase_15 AC 4 ms
8,640 KB
testcase_16 AC 6 ms
14,604 KB
testcase_17 AC 10 ms
20,860 KB
testcase_18 AC 13 ms
27,276 KB
testcase_19 AC 15 ms
29,500 KB
testcase_20 AC 19 ms
33,604 KB
testcase_21 AC 19 ms
33,856 KB
testcase_22 AC 20 ms
33,796 KB
testcase_23 AC 41 ms
60,744 KB
testcase_24 AC 34 ms
50,424 KB
testcase_25 AC 32 ms
49,540 KB
testcase_26 AC 72 ms
96,896 KB
testcase_27 AC 72 ms
97,284 KB
testcase_28 AC 73 ms
97,048 KB
testcase_29 AC 73 ms
97,144 KB
testcase_30 AC 73 ms
97,060 KB
testcase_31 AC 25 ms
32,920 KB
testcase_32 AC 24 ms
32,936 KB
testcase_33 AC 24 ms
33,032 KB
testcase_34 AC 25 ms
33,168 KB
testcase_35 AC 24 ms
33,028 KB
testcase_36 AC 24 ms
33,064 KB
testcase_37 AC 20 ms
33,312 KB
testcase_38 AC 24 ms
32,944 KB
testcase_39 AC 23 ms
33,248 KB
testcase_40 AC 24 ms
33,052 KB
testcase_41 AC 2 ms
6,816 KB
testcase_42 AC 2 ms
6,816 KB
testcase_43 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
#include <iomanip>
#include <cstring>
#include <string>
#include <vector>
#include <queue>
#include <cmath>
#include <stack>
#include <set>
#include <map>
typedef long long ll;
typedef unsigned int uint;
using namespace std;

const ll MOD = 1000000007LL;
int n, K;
vector <int> edge[2005];
ll dp[2005][2005]; // 頂点i以下のsubtreeにおいて、ちょうどj個の頂点を黒にする場合の数

int dfs(int cur, int par) {
    ll dp2[2][2005]; // 子をx番目まで見たときに、頂点i以下でちょうどj個を黒にする場合の数
    fill(dp2[0], dp2[1]+2005, 0);
    dp2[0][0] = 1;

    int sm = 1;
    int x = 0, y = 1;
    for (auto child : edge[cur]) {
        if (child == par) continue;

        int sz = dfs(child, cur);
        for (int j = 0; j <= sz; j++) {
            for (int k = 0; k < sm; k++) {
                (dp2[y][j+k] += dp2[x][k] * dp[child][j] % MOD) %= MOD;
            }
        }

        sm += sz;
        swap(x, y);
        fill(dp2[y], dp2[y]+2005, 0);
    }

    for (int i = 0; i < sm; i++) dp[cur][i] = dp2[x][i];
    dp[cur][sm] = 1;

    return sm;
}

int main() {
    cin >> n >> K;
    for (int i = 1; i < n; i++) {
        int a, b;
        cin >> a >> b;
        edge[a].push_back(b);
        edge[b].push_back(a);
    }

    dfs(0, -1);
    cout << dp[0][K] << "\n";
    return 0;
}
0