結果

問題 No.196 典型DP (1)
ユーザー hashiryohashiryo
提出日時 2018-12-26 11:00:42
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,525 bytes
コンパイル時間 1,115 ms
コンパイル使用メモリ 92,832 KB
実行使用メモリ 40,244 KB
最終ジャッジ日時 2024-10-01 14:42:20
合計ジャッジ時間 11,131 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,640 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 3 ms
6,816 KB
testcase_13 AC 4 ms
6,816 KB
testcase_14 AC 4 ms
6,816 KB
testcase_15 AC 53 ms
8,740 KB
testcase_16 AC 409 ms
14,760 KB
testcase_17 AC 840 ms
20,296 KB
testcase_18 TLE -
testcase_19 AC 1,206 ms
26,336 KB
testcase_20 AC 32 ms
30,100 KB
testcase_21 AC 113 ms
29,700 KB
testcase_22 AC 17 ms
30,068 KB
testcase_23 AC 731 ms
32,500 KB
testcase_24 AC 56 ms
31,724 KB
testcase_25 TLE -
testcase_26 -- -
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 <iostream>
#include <stdio.h>
#include <fstream>
#include <algorithm>
#include <string>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <vector>
#include <limits.h>
#include <math.h>
#include <functional>
#include <bitset>
#include <iomanip>
#include <cassert>

#define repeat(i,n) for (long long i = 0; (i) < (n); ++ (i))
#define debug(x) cerr << #x << ": " << x << '\n'
#define debugArray(x,n) for(long long i = 0; (i) < (n); ++ (i)) cerr << #x << "[" << i << "]: " << x[i] << '\n'
#define debugArrayP(x,n) for(long long i = 0; (i) < (n); ++ (i)) cerr << #x << "[" << i << "]: " << x[i].first<< " " << x[i].second << '\n'

using namespace std;

typedef long long ll;
typedef unsigned long long ull;
typedef pair<int,int> Pii;
typedef vector<int> vint;
typedef vector<ll> vll;
const ll INF = INT_MAX;
const ll MOD = 1e9+7;

int N,K;
vector<vint> G;
ll dp[2010][2010];
ll tmp[2010];
ll size[2010];

void dfs(int v,int par){
  size[v]=1;
  dp[v][0]=1;
  for(int chi:G[v])if(chi!=par){
    dfs(chi,v);
    size[v]+=size[chi];
    fill(tmp,tmp+K+1,0);
    for(int k=K;k>=0;k--){
      repeat(l,k+1){
        tmp[k] = (tmp[k]+dp[v][k-l]*dp[chi][l]%MOD)%MOD;
      }
    }
    swap(tmp,dp[v]);
  }
  if(size[v]<=K){
    dp[v][size[v]]=1;
  }
}

int main(){
  cin.tie(0);
  ios::sync_with_stdio(false);
  cin>>N>>K;
  G.resize(N);
  repeat(i,N-1){
    int a,b;cin>>a>>b;
    G[a].push_back(b);
    G[b].push_back(a);
  }
  dfs(0,-1);
  //debug(dp[3][1]);
  cout << dp[0][K] << endl;
  return 0;
}
0