結果

問題 No.196 典型DP (1)
ユーザー autumn-eelautumn-eel
提出日時 2018-01-01 20:49:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 795 bytes
コンパイル時間 1,751 ms
コンパイル使用メモリ 169,548 KB
実行使用メモリ 34,076 KB
最終ジャッジ日時 2024-12-22 23:59:57
合計ジャッジ時間 21,436 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,764 KB
testcase_01 AC 2 ms
34,056 KB
testcase_02 AC 2 ms
13,764 KB
testcase_03 AC 1 ms
33,652 KB
testcase_04 AC 2 ms
13,768 KB
testcase_05 AC 2 ms
13,764 KB
testcase_06 AC 2 ms
13,764 KB
testcase_07 AC 2 ms
33,940 KB
testcase_08 AC 2 ms
13,760 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 3 ms
6,816 KB
testcase_15 AC 6 ms
7,972 KB
testcase_16 AC 9 ms
12,332 KB
testcase_17 AC 21 ms
16,188 KB
testcase_18 AC 66 ms
20,564 KB
testcase_19 AC 70 ms
22,740 KB
testcase_20 AC 65 ms
26,604 KB
testcase_21 AC 89 ms
26,728 KB
testcase_22 AC 99 ms
26,736 KB
testcase_23 AC 1,214 ms
26,904 KB
testcase_24 AC 753 ms
26,876 KB
testcase_25 AC 728 ms
26,868 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 22 ms
26,744 KB
testcase_32 AC 22 ms
26,744 KB
testcase_33 AC 22 ms
26,868 KB
testcase_34 AC 22 ms
28,256 KB
testcase_35 AC 22 ms
28,520 KB
testcase_36 AC 21 ms
26,604 KB
testcase_37 AC 24 ms
26,992 KB
testcase_38 AC 21 ms
28,400 KB
testcase_39 AC 20 ms
26,616 KB
testcase_40 AC 21 ms
26,736 KB
testcase_41 AC 2 ms
6,816 KB
testcase_42 AC 1 ms
6,816 KB
testcase_43 AC 2 ms
34,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n)for(int i=0;i<(n);i++)
#define MOD 1000000007
using namespace std;
typedef long long ll;

int dp[3000][3000];//頂点iの個をj個塗る通り数
vector<int>E[3000];
int siz[3000];//頂点iを根とする部分木のサイズ

void rec(int v,int p){
	dp[v][0]=1;
	dp[v][siz[v]]=1;
	for(auto u:E[v]){
		if(u==p)continue;
		rec(u,v);
		for(int i=siz[v]-1;i>0;i--){
			for(int j=1;j<=siz[u]&&j<=i;j++){
				(dp[v][i]+=(dp[u][j]*(ll)dp[v][i-j])%MOD)%=MOD;
			}
		}
	}
}
void dfs(int v,int p){
	siz[v]=1;	
	for(int u:E[v]){
		if(u==p)continue;
		dfs(u,v);
		siz[v]+=siz[u];
	}
}
int main(){
	int n,k;scanf("%d%d",&n,&k);
	rep(i,n-1){
		int a,b;scanf("%d%d",&a,&b);
		E[a].push_back(b);
		E[b].push_back(a);
	}
	dfs(0,-1);
	rec(0,-1);
	cout<<dp[0][k]<<endl;
}
0