結果

問題 No.196 典型DP (1)
ユーザー Div9851Div9851
提出日時 2017-10-07 20:57:26
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 957 bytes
コンパイル時間 1,600 ms
コンパイル使用メモリ 162,188 KB
実行使用メモリ 54,060 KB
最終ジャッジ日時 2024-11-17 04:37:21
合計ジャッジ時間 42,196 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,636 KB
testcase_01 AC 1 ms
39,964 KB
testcase_02 AC 2 ms
13,640 KB
testcase_03 AC 2 ms
40,460 KB
testcase_04 AC 1 ms
13,640 KB
testcase_05 AC 2 ms
40,092 KB
testcase_06 AC 2 ms
13,636 KB
testcase_07 AC 1 ms
39,736 KB
testcase_08 AC 2 ms
13,636 KB
testcase_09 AC 2 ms
39,304 KB
testcase_10 AC 2 ms
13,636 KB
testcase_11 AC 2 ms
38,848 KB
testcase_12 AC 2 ms
13,636 KB
testcase_13 AC 3 ms
38,920 KB
testcase_14 AC 3 ms
13,636 KB
testcase_15 AC 48 ms
14,776 KB
testcase_16 AC 376 ms
20,940 KB
testcase_17 AC 794 ms
54,060 KB
testcase_18 TLE -
testcase_19 AC 1,126 ms
28,784 KB
testcase_20 AC 24 ms
32,868 KB
testcase_21 AC 94 ms
32,976 KB
testcase_22 AC 11 ms
32,860 KB
testcase_23 AC 666 ms
33,432 KB
testcase_24 AC 49 ms
33,280 KB
testcase_25 TLE -
testcase_26 AC 10 ms
33,540 KB
testcase_27 AC 264 ms
33,640 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 9 ms
32,996 KB
testcase_32 AC 1,596 ms
32,880 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 9 ms
32,864 KB
testcase_37 AC 1,575 ms
33,120 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 AC 2 ms
6,816 KB
testcase_42 AC 1 ms
6,816 KB
testcase_43 AC 1 ms
38,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define rep(i,n) for(int i=0;i<n;i++)
#define ALL(v) (v).begin(),(v).end()
#define MP(a,b) make_pair(a,b)
typedef long long LL;
typedef pair<int, int> PI;
typedef vector<int> VI;
const LL MOD = 1000000007LL;
vector<int> G[2000];
LL dp[2000][2001];
LL tree[2000];
int N, K;
void cnt(int v, int par) {
	tree[v] = 1;
	rep(i, G[v].size()) {
		int to = G[v][i];
		if (to == par) continue;
		cnt(to, v);
		tree[v] += tree[to];
	}
}
void dfs(int v, int par) {
	dp[v][0] = 1;
	rep(i, G[v].size()) {
		int to = G[v][i];
		if (to == par) continue;
		dfs(to, v);
		for (int j = K; j >= 1; j--) {
			for (int k = 1; k <= j; k++) {
				LL t = (dp[v][j - k] * dp[to][k]) % MOD;
				(dp[v][j] += t) %= MOD;
			}
		}
	}
	(dp[v][tree[v]] += 1) %= MOD;
}
int main() {
	cin >> N >> K;
	rep(i, N - 1) {
		int a, b;
		cin >> a >> b;
		G[a].push_back(b);
		G[b].push_back(a);
	}
	cnt(0, -1);
	dfs(0, -1);
	cout << dp[0][K] << endl;
}
0