結果

問題 No.196 典型DP (1)
ユーザー autumn-eelautumn-eel
提出日時 2018-01-01 21:30:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 21 ms / 2,000 ms
コード長 1,621 bytes
コンパイル時間 1,943 ms
コンパイル使用メモリ 166,580 KB
実行使用メモリ 27,848 KB
最終ジャッジ日時 2023-08-24 15:44:49
合計ジャッジ時間 4,187 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 1 ms
4,384 KB
testcase_03 AC 2 ms
4,384 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 AC 1 ms
4,380 KB
testcase_10 AC 1 ms
4,376 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 1 ms
4,376 KB
testcase_13 AC 1 ms
4,376 KB
testcase_14 AC 2 ms
4,380 KB
testcase_15 AC 3 ms
8,232 KB
testcase_16 AC 5 ms
12,408 KB
testcase_17 AC 6 ms
16,452 KB
testcase_18 AC 8 ms
20,576 KB
testcase_19 AC 10 ms
22,724 KB
testcase_20 AC 13 ms
26,820 KB
testcase_21 AC 13 ms
26,768 KB
testcase_22 AC 12 ms
26,840 KB
testcase_23 AC 15 ms
27,028 KB
testcase_24 AC 15 ms
26,944 KB
testcase_25 AC 15 ms
27,024 KB
testcase_26 AC 21 ms
27,620 KB
testcase_27 AC 20 ms
27,572 KB
testcase_28 AC 20 ms
27,572 KB
testcase_29 AC 21 ms
27,588 KB
testcase_30 AC 21 ms
27,848 KB
testcase_31 AC 15 ms
26,740 KB
testcase_32 AC 14 ms
26,892 KB
testcase_33 AC 14 ms
26,804 KB
testcase_34 AC 15 ms
26,756 KB
testcase_35 AC 14 ms
26,720 KB
testcase_36 AC 14 ms
26,856 KB
testcase_37 AC 13 ms
26,792 KB
testcase_38 AC 15 ms
26,744 KB
testcase_39 AC 14 ms
26,800 KB
testcase_40 AC 14 ms
26,744 KB
testcase_41 AC 1 ms
4,380 KB
testcase_42 AC 1 ms
4,376 KB
testcase_43 AC 1 ms
4,380 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;
}/*
#include<bits/stdc++.h>
using namespace std;
const int mod = 1000000007;
int N, K;
vector< int > graph[2000];
int cnt=0;

int dp[2000][2001];
int num[2000];
int rec(int idx, int prev)
{
  for(int i = 0; i < graph[idx].size(); i++) {
    if(graph[idx][i] != prev) rec(graph[idx][i], idx);
  }
  dp[idx][0] = 1;
  num[idx] = 1;
  for(int i = 0; i < graph[idx].size(); i++) {
    if(graph[idx][i] == prev) continue;
    for(int j = num[idx]; j >= 0; j--) {
      for(int k = num[graph[idx][i]]; k >= 1; k--) {
        (dp[idx][j + k] += (long long)dp[idx][j] * dp[graph[idx][i]][k] % mod) %= mod;
        cnt++;
      }
    }
    num[idx] += num[graph[idx][i]];
  }
  dp[idx][num[idx]] = 1;
  return(dp[idx][K]);
}

int main()
{
  cin >> N >> K;
  for(int i = 0; i < N - 1; i++) {
    int a, b;
    cin >> a >> b;
    graph[a].push_back(b);
    graph[b].push_back(a);
  }
  cout << rec(0, -1) << endl;
  cout<<cnt<<endl;
}*/
0