結果

問題 No.196 典型DP (1)
ユーザー 🐬hec🐬hec
提出日時 2015-07-30 17:07:52
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 1,656 bytes
コンパイル時間 1,372 ms
コンパイル使用メモリ 162,840 KB
実行使用メモリ 66,688 KB
最終ジャッジ日時 2024-07-17 22:37:10
合計ジャッジ時間 3,243 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 5 ms
9,344 KB
testcase_16 AC 7 ms
14,720 KB
testcase_17 AC 10 ms
20,608 KB
testcase_18 AC 15 ms
26,752 KB
testcase_19 AC 16 ms
29,696 KB
testcase_20 AC 20 ms
35,328 KB
testcase_21 AC 20 ms
35,100 KB
testcase_22 AC 19 ms
35,328 KB
testcase_23 AC 33 ms
48,540 KB
testcase_24 AC 29 ms
43,664 KB
testcase_25 AC 28 ms
43,008 KB
testcase_26 AC 49 ms
66,476 KB
testcase_27 AC 48 ms
66,688 KB
testcase_28 AC 49 ms
66,632 KB
testcase_29 AC 49 ms
66,688 KB
testcase_30 AC 48 ms
66,488 KB
testcase_31 AC 25 ms
34,944 KB
testcase_32 AC 25 ms
34,816 KB
testcase_33 AC 25 ms
34,944 KB
testcase_34 AC 25 ms
35,072 KB
testcase_35 AC 24 ms
34,916 KB
testcase_36 AC 23 ms
34,944 KB
testcase_37 AC 21 ms
35,072 KB
testcase_38 AC 24 ms
34,816 KB
testcase_39 AC 25 ms
35,016 KB
testcase_40 AC 25 ms
35,016 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

inline int toInt(string s) {int v; istringstream sin(s);sin>>v;return v;}
template<class T> inline string toString(T x) {ostringstream sout;sout<<x;return sout.str();}
template<class T> inline T sqr(T x) {return x*x;}

typedef vector<int> vi;
typedef vector<vi> vvi;
typedef vector<string> vs;
typedef pair<int, int> pii;
typedef long long ll;

#define all(a)  (a).begin(),(a).end()
#define rall(a) (a).rbegin(), (a).rend()
#define pb push_back
#define mp make_pair
#define each(i,c) for(typeof((c).begin()) i=(c).begin(); i!=(c).end(); ++i)
#define exist(s,e) ((s).find(e)!=(s).end())
#define range(i,a,b) for(int i=(a);i<(b);++i)
#define rep(i,n)  range(i,0,n)
#define clr(a,b) memset((a), (b) ,sizeof(a))
#define dump(x)  cerr << #x << " = " << (x) << endl;
#define debug(x) cerr << #x << " = " << (x) << " (L" << __LINE__ << ")" << " " << __FILE__ << endl;

const double eps = 1e-10;
const double pi  = acos(-1.0);
const ll INF =1LL << 62;
const int inf =1 << 29;

const ll mod= 1000000007;
const int nmax=2010;

vi graph[nmax];
int num[nmax];
ll dp[nmax][nmax];


void dfs(int v,int p){
	for(auto &v2:graph[v]) if(v2!=p) dfs(v2,v);
	rep(i,nmax) dp[v][i]=0;
	dp[v][0]=1LL,num[v]=0;
	for(auto &v2:graph[v])if(v2!=p) {
		ll dp2[nmax];
		rep(i,nmax) dp2[i]=0;
		rep(i,num[v]+1)rep(j,num[v2]+1)
			dp2[i+j]=(dp2[i+j]+dp[v][i]*dp[v2][j])%mod;
		rep(i,nmax) dp[v][i]=dp2[i];
		num[v]+=num[v2];
	}
	num[v]++,dp[v][num[v]]=1;
	return;
}


int main(void){
	int N,K;
	cin >> N >> K;
	rep(i,N-1){
		int a,b;
		cin >> a >> b;
		graph[a].pb(b);
		graph[b].pb(a);
	}
	dfs(0,-1);
	cout << dp[0][K] << endl;
	return 0;
}
0