結果

問題 No.196 典型DP (1)
ユーザー autumn-eelautumn-eel
提出日時 2018-01-01 20:51:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 704 bytes
コンパイル時間 1,495 ms
コンパイル使用メモリ 169,040 KB
実行使用メモリ 22,528 KB
最終ジャッジ日時 2024-06-02 05:53:22
合計ジャッジ時間 7,923 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
12,188 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 5 ms
7,972 KB
testcase_16 AC 6 ms
6,528 KB
testcase_17 AC 16 ms
8,064 KB
testcase_18 AC 54 ms
9,600 KB
testcase_19 AC 58 ms
10,240 KB
testcase_20 AC 49 ms
11,776 KB
testcase_21 AC 71 ms
11,776 KB
testcase_22 AC 82 ms
11,904 KB
testcase_23 AC 1,077 ms
14,592 KB
testcase_24 AC 658 ms
13,824 KB
testcase_25 AC 641 ms
13,312 KB
testcase_26 TLE -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
権限があれば一括ダウンロードができます

ソースコード

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);
		siz[v]+=siz[u];
		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;
			}
		}
	}
	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