結果
問題 | No.196 典型DP (1) |
ユーザー | 古寺いろは |
提出日時 | 2015-04-26 22:50:21 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 634 bytes |
コンパイル時間 | 1,394 ms |
コンパイル使用メモリ | 161,252 KB |
実行使用メモリ | 50,888 KB |
最終ジャッジ日時 | 2024-07-05 03:13:42 |
合計ジャッジ時間 | 2,836 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 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,940 KB |
testcase_08 | AC | 1 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 | 13 ms
50,628 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 34 ms
50,600 KB |
testcase_32 | AC | 34 ms
48,808 KB |
testcase_33 | AC | 34 ms
50,856 KB |
testcase_34 | AC | 33 ms
50,600 KB |
testcase_35 | AC | 34 ms
50,728 KB |
testcase_36 | AC | 32 ms
50,860 KB |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | AC | 2 ms
6,940 KB |
testcase_42 | AC | 1 ms
6,940 KB |
testcase_43 | AC | 2 ms
6,944 KB |
ソースコード
#include "bits/stdc++.h" using namespace std; vector<int> es[3000]; long long dp[3000][3000]; int child[3000]; long long mod = 1000000007; int main() { int N, K; cin >> N >> K; for (int i = 0; i < N - 1; i++) { int a, b; cin >> a >> b; es[a].push_back(b); } for (int i = N - 1; i >= 0; i--) { child[i] = 1; dp[i][0] = 1; for (auto j : es[i]){ for (int k = child[i] - 1; k >= 0; k--) { for (int l = child[j]; l >= 1; l--) { dp[i][k + l] += dp[i][k] * dp[j][l]; dp[i][k + l] %= mod; } } child[i] += child[j]; } dp[i][child[i]] = 1; } cout << dp[0][K] << endl; cin >> N; }