結果

問題 No.196 典型DP (1)
ユーザー veqccveqcc
提出日時 2019-02-21 20:15:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,437 bytes
コンパイル時間 941 ms
コンパイル使用メモリ 97,416 KB
実行使用メモリ 83,456 KB
最終ジャッジ日時 2024-11-20 20:23:33
合計ジャッジ時間 38,506 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
39,040 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 AC 2 ms
73,344 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 2 ms
83,456 KB
testcase_06 AC 2 ms
10,496 KB
testcase_07 AC 2 ms
26,624 KB
testcase_08 AC 2 ms
10,496 KB
testcase_09 AC 2 ms
20,608 KB
testcase_10 AC 2 ms
10,496 KB
testcase_11 AC 2 ms
18,304 KB
testcase_12 AC 3 ms
10,496 KB
testcase_13 AC 3 ms
6,820 KB
testcase_14 AC 4 ms
6,820 KB
testcase_15 AC 35 ms
5,632 KB
testcase_16 AC 258 ms
9,216 KB
testcase_17 AC 528 ms
12,928 KB
testcase_18 AC 1,552 ms
19,584 KB
testcase_19 AC 757 ms
17,664 KB
testcase_20 AC 20 ms
12,544 KB
testcase_21 AC 69 ms
13,824 KB
testcase_22 AC 11 ms
12,032 KB
testcase_23 AC 474 ms
23,040 KB
testcase_24 AC 39 ms
14,080 KB
testcase_25 TLE -
testcase_26 AC 9 ms
12,032 KB
testcase_27 AC 195 ms
23,296 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 9 ms
11,648 KB
testcase_32 AC 1,078 ms
21,120 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 8 ms
11,648 KB
testcase_37 AC 1,049 ms
20,992 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 AC 2 ms
5,248 KB
testcase_42 AC 2 ms
5,248 KB
testcase_43 AC 2 ms
18,304 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 sz = 1;
    int x = 0, y = 1;
    for (int i = 0; i < edge[cur].size(); i++) {
        int child = edge[cur][i];
        if (child == par) continue;

        sz += dfs(child, cur);
        for (int j = K; j >= 0; j--) {
            for (int k = 0; k <= 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 (sz <= K) (dp[cur][sz] += 1) %= MOD;

    return sz;
}

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