結果

問題 No.196 典型DP (1)
ユーザー ei1333333ei1333333
提出日時 2015-09-09 19:45:39
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 874 bytes
コンパイル時間 1,244 ms
コンパイル使用メモリ 160,480 KB
実行使用メモリ 17,536 KB
最終ジャッジ日時 2024-07-19 05:05:01
合計ジャッジ時間 2,906 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 5 ms
6,272 KB
testcase_17 AC 8 ms
7,808 KB
testcase_18 AC 12 ms
9,344 KB
testcase_19 AC 13 ms
10,112 KB
testcase_20 AC 15 ms
11,520 KB
testcase_21 AC 15 ms
11,520 KB
testcase_22 AC 16 ms
11,648 KB
testcase_23 AC 22 ms
14,336 KB
testcase_24 AC 20 ms
13,440 KB
testcase_25 AC 21 ms
13,184 KB
testcase_26 AC 32 ms
17,408 KB
testcase_27 AC 31 ms
17,280 KB
testcase_28 AC 32 ms
17,280 KB
testcase_29 AC 32 ms
17,408 KB
testcase_30 AC 33 ms
17,536 KB
testcase_31 AC 18 ms
11,520 KB
testcase_32 AC 19 ms
11,520 KB
testcase_33 AC 19 ms
11,648 KB
testcase_34 AC 20 ms
11,520 KB
testcase_35 AC 21 ms
11,648 KB
testcase_36 AC 17 ms
11,392 KB
testcase_37 AC 17 ms
11,392 KB
testcase_38 AC 19 ms
11,520 KB
testcase_39 AC 20 ms
11,520 KB
testcase_40 AC 20 ms
11,520 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
const int mod = 1000000007;
int N, K;
vector< int > graph[2000];

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;
      }
    }
    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;
}
0