結果

問題 No.196 典型DP (1)
ユーザー autumn-eelautumn-eel
提出日時 2018-01-01 21:31:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 20 ms / 2,000 ms
コード長 697 bytes
コンパイル時間 1,528 ms
コンパイル使用メモリ 167,436 KB
実行使用メモリ 27,712 KB
最終ジャッジ日時 2023-08-24 15:44:54
合計ジャッジ時間 3,418 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 2 ms
4,376 KB
testcase_14 AC 2 ms
4,380 KB
testcase_15 AC 4 ms
8,340 KB
testcase_16 AC 5 ms
12,352 KB
testcase_17 AC 7 ms
16,464 KB
testcase_18 AC 9 ms
20,712 KB
testcase_19 AC 10 ms
22,616 KB
testcase_20 AC 13 ms
26,892 KB
testcase_21 AC 13 ms
26,760 KB
testcase_22 AC 13 ms
26,868 KB
testcase_23 AC 16 ms
27,056 KB
testcase_24 AC 15 ms
26,980 KB
testcase_25 AC 14 ms
26,916 KB
testcase_26 AC 20 ms
27,644 KB
testcase_27 AC 20 ms
27,680 KB
testcase_28 AC 20 ms
27,712 KB
testcase_29 AC 20 ms
27,536 KB
testcase_30 AC 20 ms
27,564 KB
testcase_31 AC 14 ms
26,756 KB
testcase_32 AC 14 ms
26,760 KB
testcase_33 AC 14 ms
26,900 KB
testcase_34 AC 15 ms
26,828 KB
testcase_35 AC 14 ms
26,792 KB
testcase_36 AC 14 ms
26,776 KB
testcase_37 AC 13 ms
26,716 KB
testcase_38 AC 14 ms
26,792 KB
testcase_39 AC 15 ms
26,740 KB
testcase_40 AC 14 ms
26,740 KB
testcase_41 AC 1 ms
4,380 KB
testcase_42 AC 2 ms
4,380 KB
testcase_43 AC 2 ms
4,376 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;
	siz[v]=1;
	for(auto u:E[v]){
		if(u==p)continue;
		rec(u,v);
		for(int i=siz[v];i>=0;i--){
			for(int j=1;j<=siz[u];j++){
				(dp[v][i+j]+=(dp[u][j]*(ll)dp[v][i])%MOD)%=MOD;
			}
		}
		siz[v]+=siz[u];
	}
	dp[v][siz[v]]=1;
}
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);
	}
	rec(0,-1);
	cout<<dp[0][k]<<endl;
}
0