結果

問題 No.196 典型DP (1)
ユーザー kmjpkmjp
提出日時 2015-04-26 22:30:55
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 1,514 bytes
コンパイル時間 1,378 ms
コンパイル使用メモリ 166,020 KB
実行使用メモリ 96,324 KB
最終ジャッジ日時 2024-07-05 03:01:30
合計ジャッジ時間 4,455 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 4 ms
6,944 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 4 ms
6,944 KB
testcase_15 AC 9 ms
11,124 KB
testcase_16 AC 14 ms
16,592 KB
testcase_17 AC 23 ms
21,732 KB
testcase_18 AC 34 ms
27,720 KB
testcase_19 AC 43 ms
30,416 KB
testcase_20 AC 47 ms
35,940 KB
testcase_21 AC 47 ms
35,788 KB
testcase_22 AC 50 ms
35,888 KB
testcase_23 AC 99 ms
62,276 KB
testcase_24 AC 85 ms
52,412 KB
testcase_25 AC 80 ms
51,156 KB
testcase_26 AC 131 ms
95,280 KB
testcase_27 AC 131 ms
96,324 KB
testcase_28 AC 132 ms
95,928 KB
testcase_29 AC 131 ms
96,160 KB
testcase_30 AC 132 ms
94,520 KB
testcase_31 AC 78 ms
35,548 KB
testcase_32 AC 77 ms
35,588 KB
testcase_33 AC 78 ms
35,808 KB
testcase_34 AC 78 ms
35,616 KB
testcase_35 AC 77 ms
35,492 KB
testcase_36 AC 73 ms
35,800 KB
testcase_37 AC 47 ms
35,788 KB
testcase_38 AC 73 ms
35,548 KB
testcase_39 AC 66 ms
35,764 KB
testcase_40 AC 76 ms
35,832 KB
testcase_41 AC 2 ms
6,944 KB
testcase_42 AC 2 ms
6,940 KB
testcase_43 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<to;x++)
#define FORR(x,arr) for(auto& x:arr)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------

int N,K;
vector<int> E[2050];
ll val[2050][2050];
ll mo=1000000007;
int num[2050];

void dfs(int cur,int pre) {
	int i,j,x;
	vector<ll> nn[2];
	nn[0]=vector<ll>(2020,0);
	nn[1]=vector<ll>(2020,0);
	
	FOR(i,E[cur].size()) if(E[cur][i]==pre) break;
	if(i<E[cur].size()) E[cur].erase(E[cur].begin()+i);
	
	num[cur]=1;
	nn[0][0]=1;
	
	FOR(x,E[cur].size()) {
		int cu=x%2,ta=cu^1;
		int tar=E[cur][x];
		FOR(i,2020) nn[ta][i]=0;
		
		dfs(tar,cur);
		for(i=0;i<=num[tar];i++) if(val[tar][i]) {
			for(j=0;j<num[cur];j++) nn[ta][i+j] += nn[cu][j]*val[tar][i]%mo;
		}
		num[cur]+=num[tar];
		FOR(i,num[cur]+1) nn[ta][i] %= mo;
	}
	
	FOR(i,2010) val[cur][i]=nn[E[cur].size()%2][i];
	val[cur][num[cur]]=1;
}

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N>>K;
	FOR(i,N-1) {
		cin>>x>>y;
		E[x].push_back(y);
		E[y].push_back(x);
	}
	dfs(0,-1);
	cout<<val[0][K]<<endl;
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false);
	FOR(i,argc-1) s+=argv[i+1],s+='\n';
	FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	solve(); return 0;
}
0