結果
問題 | No.196 典型DP (1) |
ユーザー | nanophoto12 |
提出日時 | 2021-11-23 16:10:40 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,554 bytes |
コンパイル時間 | 4,918 ms |
コンパイル使用メモリ | 268,692 KB |
実行使用メモリ | 19,328 KB |
最終ジャッジ日時 | 2024-06-25 12:36:39 |
合計ジャッジ時間 | 5,995 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 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 | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,940 KB |
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 | 4 ms
6,944 KB |
testcase_27 | AC | 5 ms
6,944 KB |
testcase_28 | AC | 21 ms
11,520 KB |
testcase_29 | AC | 28 ms
16,896 KB |
testcase_30 | AC | 31 ms
19,328 KB |
testcase_31 | AC | 3 ms
6,940 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | AC | 11 ms
6,940 KB |
testcase_36 | AC | 3 ms
6,944 KB |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | AC | 11 ms
6,944 KB |
testcase_41 | AC | 2 ms
6,940 KB |
testcase_42 | AC | 2 ms
6,944 KB |
testcase_43 | AC | 2 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> #define M_PI 3.14159265358979323846 // pi using namespace std; typedef long long ll; typedef unsigned long long ull; typedef pair<ll, ll> P; typedef tuple<ll, ll, ll> t3; typedef tuple<ll, ll, ll, ll> t4; typedef tuple<ll, ll, ll, ll, ll> t5; #define rep(a,n) for(ll a = 0;a < n;a++) template<typename T> static inline void chmin(T& ref, const T value) { if (ref > value) ref = value; } template<typename T> static inline void chmax(T& ref, const T value) { if (ref < value) ref = value; } #include <atcoder/all> using namespace atcoder; typedef modint998244353 mint; int main() { int n, k; cin >> n >> k; vector<vector<int>> g(n); rep(i, n - 1) { int a, b; cin >> a >> b; g[a].push_back(b); g[b].push_back(a); } vector<int> cs(n, 0); function<int(int, int)> dfs = [&](int current, int parent) { int c = 1; for (auto x : g[current]) { if (x == parent) continue; c += dfs(x, current); } cs[current] = c; return c; }; dfs(0, -1); vector<mint> dp2(k + 1, 0); dp2[k] = 1; function<void(int, int, vector<mint>&)> dfs2 = [&](int current, int parent, vector<mint>& dp) { //塗らないパターン vector<mint> temp = dp; //子供を個別に塗り分けていくパターン for (auto x : g[current]) { if (x == parent) continue; dfs2(x, current, temp); } //自分以下をすべて塗るパターン for (int x = cs[current]; x <= k; x++) { temp[x - cs[current]] += dp[x]; } dp = temp; }; dfs2(0, -1, dp2); cout << dp2[0].val() << endl; return 0; }