結果
問題 | No.196 典型DP (1) |
ユーザー | cubinglover |
提出日時 | 2022-11-26 20:58:12 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,296 bytes |
コンパイル時間 | 2,515 ms |
コンパイル使用メモリ | 212,408 KB |
実行使用メモリ | 42,916 KB |
最終ジャッジ日時 | 2024-10-03 04:09:33 |
合計ジャッジ時間 | 10,407 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,636 KB |
testcase_01 | AC | 2 ms
6,824 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | AC | 2 ms
6,816 KB |
testcase_12 | AC | 3 ms
6,816 KB |
testcase_13 | AC | 3 ms
6,816 KB |
testcase_14 | AC | 3 ms
6,816 KB |
testcase_15 | AC | 10 ms
8,704 KB |
testcase_16 | AC | 26 ms
14,336 KB |
testcase_17 | AC | 45 ms
20,096 KB |
testcase_18 | AC | 122 ms
26,240 KB |
testcase_19 | AC | 149 ms
29,312 KB |
testcase_20 | AC | 99 ms
34,688 KB |
testcase_21 | AC | 168 ms
34,816 KB |
testcase_22 | AC | 149 ms
34,816 KB |
testcase_23 | AC | 1,525 ms
35,584 KB |
testcase_24 | AC | 1,000 ms
35,328 KB |
testcase_25 | AC | 992 ms
35,328 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 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define repl(i, l, r) for (int i = (l); i < (int)(r); ++i) #define rep(i, n) repl(i, 0, n) #define CST(x) cout << fixed << setprecision(x) #define all(x) (x).begin(), (x).end() #define sz(x) (int)(x).size() using ll = long long; constexpr ll MOD = 1e9 + 7; constexpr int inf = 1e9 + 10; constexpr ll INF = (ll)4e18 + 10; constexpr int dx[9] = {1, 0, -1, 0, 1, -1, -1, 1, 0}; constexpr int dy[9] = {0, 1, 0, -1, 1, 1, -1, -1, 0}; const double PI = acos(-1); template <typename T> using MaxHeap = priority_queue<T>; template <typename T> using MinHeap = priority_queue<T, vector<T>, greater<T>>; template <typename T> inline bool chmax(T &a, T b) { return ((a < b) ? (a = b, true) : (false)); } template <typename T> inline bool chmin(T &a, T b) { return ((a > b) ? (a = b, true) : (false)); } template <typename T> inline void yn(const T &a) { ((a) ? (cout << "Yes" << endl) : (cout << "No" << endl)); } template <typename T> inline void YN(const T &a) { ((a) ? (cout << "YES" << endl) : (cout << "NO" << endl)); } int main() { cin.tie(nullptr); cout.tie(nullptr); ios::sync_with_stdio(false); int n, k; cin >> n >> k; vector<vector<int>> G(n); rep(i, n - 1) { int a, b; cin >> a >> b; G[a].emplace_back(b), G[b].emplace_back(a); } vector dp(n, vector(2005, 0ll)); auto f = [&G, &dp](auto self, const auto &v, const auto &p) -> int { dp[v][0] = 1; int res = 1; queue<int> que; for (const auto &to : G[v]) { if (to == p) continue; int t = self(self, to, v); que.push(t); res += t; } int cnt = 0; for (const auto &to : G[v]) { if (to == p) continue; int t = que.front(); que.pop(); for (int i = t + cnt + 1; i > 0; --i) { ll x = 0; rep(j, i + 1) { if (i + j == 0) continue; x += dp[v][i - j] * dp[to][j]; x %= MOD; } dp[v][i] = x; } cnt += t; } dp[v][res] = 1; return res; }; f(f, 0, -1); cout << dp[0][k] << endl; return 0; }