結果

問題 No.196 典型DP (1)
ユーザー 193s193s
提出日時 2017-09-28 19:18:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,597 bytes
コンパイル時間 928 ms
コンパイル使用メモリ 96,888 KB
実行使用メモリ 25,448 KB
最終ジャッジ日時 2024-04-27 15:09:15
合計ジャッジ時間 6,804 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,884 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 5 ms
6,944 KB
testcase_16 AC 8 ms
8,376 KB
testcase_17 AC 17 ms
12,500 KB
testcase_18 AC 41 ms
14,432 KB
testcase_19 AC 46 ms
17,892 KB
testcase_20 AC 42 ms
17,520 KB
testcase_21 AC 59 ms
17,532 KB
testcase_22 AC 63 ms
18,544 KB
testcase_23 AC 720 ms
18,848 KB
testcase_24 AC 451 ms
18,828 KB
testcase_25 AC 432 ms
18,696 KB
testcase_26 TLE -
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 <cstdio>
#include <iostream>
#include <algorithm>
#include <string>
#include <cstring>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <cmath>
#include <iomanip>
#include <cassert>
#include <bitset>
using namespace std;

typedef pair<int, int> P;
#define rep(i, n) for (int i=0; i<(n); i++)
#define all(c) (c).begin(), (c).end()
#define uniq(c) c.erase(unique(all(c)), (c).end())
#define index(xs, x) (int)(lower_bound(all(xs), x) - xs.begin())
#define _1 first
#define _2 second
#define pb push_back
#define INF 1145141919
#define MOD 1000000007
inline void add(int &x, int v) {
  x += v;
  if (x >= MOD) x -= MOD;
}

int N, K;
vector<int> G[2000];

int sz[2000];
int dfs(int x, int p) {
  sz[x] = 1;
  for (int t : G[x]) {
    if (t == p) continue;
    sz[x] += dfs(t, x);
  }
  return sz[x];
}

int dp[2000][2001];
int dp2[2][2001];
void f(int x, int p) {
  for (int t : G[x]) {
    if (t == p) continue;
    f(t, x);
  }

  int n = sz[x];
  rep(i, n+1) dp2[0][i] = 0;
  dp2[0][0] = 1;

  for (int t : G[x]) {
    if (t == p) continue;
    rep(i, n+1) dp2[1][i] = 0;
    for (int j=n; j>=0;j--){
      rep(k, sz[t]+1) {
        if (j+k > n) break;
        add(dp2[1][j+k], (1LL*dp[t][k]*dp2[0][j])%MOD);
      }
    }
    swap(dp2[0], dp2[1]);
  }
  assert(dp2[0][n] == 0);
  dp2[0][n] = 1;
  rep(i, n+1) dp[x][i] = dp2[0][i];
}

signed main() {
  ios::sync_with_stdio(false); cin.tie(0);
  cin >> N >> K;
  rep(i, N-1) {
    int a, b;
    cin >> a >> b;
    G[a].pb(b);
    G[b].pb(a);
  }
  dfs(0, -1);
  f(0, -1);
  cout << dp[0][K] << "\n";
  return 0;
}
0