結果

問題 No.196 典型DP (1)
ユーザー beetbeet
提出日時 2018-06-21 19:37:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 695 bytes
コンパイル時間 1,704 ms
コンパイル使用メモリ 173,700 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-30 17:39:26
合計ジャッジ時間 3,232 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 2 ms
6,944 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 3 ms
6,944 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 18 ms
6,940 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 18 ms
6,944 KB
testcase_36 AC 16 ms
6,944 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 2 ms
6,940 KB
testcase_42 AC 2 ms
6,940 KB
testcase_43 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using Int = long long;
//INSERT ABOVE HERE
signed main(){
  int n,k;
  cin>>n>>k;
  vector<vector<int> > G(n);
  for(int i=1;i<n;i++){
    int x,y;
    cin>>x>>y;
    G[x].emplace_back(y);
  }
  vector<vector<int> > dp(n);
  vector<int> sz(n,1);
  function<void(int)> dfs=
    [&](int v){
      for(int u:G[v]){
	dfs(u);
	sz[v]+=sz[u];
      }
      dp[v].assign(sz[v]+1,0);
      dp[v][0]=1;
      for(int u:G[v]){
	vector<int> nx(sz[v]+1,0);
	for(int i=0;i<=sz[v];i++)
	  for(int j=0;j<=sz[u];j++)
	    if(i+j<=sz[v]) nx[i+j]+=dp[v][i]*dp[u][j];
	swap(dp[v],nx);
      }
      dp[v][sz[v]]=1;
    };
  dfs(0);
  cout<<dp[0][k]<<endl;
  return 0;
}
0