結果

問題 No.196 典型DP (1)
ユーザー veqccveqcc
提出日時 2019-02-21 21:45:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,414 bytes
コンパイル時間 870 ms
コンパイル使用メモリ 96,304 KB
実行使用メモリ 104,204 KB
最終ジャッジ日時 2024-11-21 06:37:30
合計ジャッジ時間 11,266 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,632 KB
testcase_01 AC 2 ms
94,288 KB
testcase_02 AC 2 ms
13,636 KB
testcase_03 AC 1 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,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,816 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,816 KB
testcase_15 AC 5 ms
8,480 KB
testcase_16 AC 7 ms
14,676 KB
testcase_17 AC 11 ms
21,032 KB
testcase_18 AC 24 ms
26,804 KB
testcase_19 AC 18 ms
29,324 KB
testcase_20 AC 10 ms
32,984 KB
testcase_21 AC 11 ms
33,140 KB
testcase_22 AC 9 ms
32,988 KB
testcase_23 AC 234 ms
38,964 KB
testcase_24 AC 23 ms
34,144 KB
testcase_25 AC 467 ms
43,288 KB
testcase_26 AC 11 ms
34,840 KB
testcase_27 AC 176 ms
41,100 KB
testcase_28 AC 1,921 ms
66,220 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 9 ms
32,988 KB
testcase_32 AC 17 ms
33,816 KB
testcase_33 AC 20 ms
34,300 KB
testcase_34 AC 28 ms
34,920 KB
testcase_35 AC 28 ms
34,964 KB
testcase_36 AC 9 ms
33,116 KB
testcase_37 AC 15 ms
33,816 KB
testcase_38 AC 21 ms
34,468 KB
testcase_39 AC 21 ms
34,584 KB
testcase_40 AC 28 ms
35,096 KB
testcase_41 AC 2 ms
6,820 KB
testcase_42 AC 2 ms
6,816 KB
testcase_43 AC 2 ms
104,204 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][K+1]; // 子をx番目まで見たときに、頂点i以下でちょうどj個を黒にする場合の数
    fill(dp2[0], dp2[1]+K+1, 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);
        sm += sz;
        for (int j = 0; j <= sz; j++) {
            for (int k = 0; k <= min(sm - 1, K) - j; k++) {
                (dp2[y][j+k] += dp2[x][k] * dp[child][j] % MOD) %= MOD;
            }
        }

        swap(x, y);
        fill(dp2[y], dp2[y]+K+1, 0);
    }

    for (int i = 0; i <= K; i++) dp[cur][i] = dp2[x][i];
    if (sm <= K) 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