結果
| 問題 |
No.196 典型DP (1)
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-08-09 18:17:39 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 3,903 bytes |
| コンパイル時間 | 2,225 ms |
| コンパイル使用メモリ | 178,128 KB |
| 実行使用メモリ | 13,636 KB |
| 最終ジャッジ日時 | 2024-10-12 03:57:55 |
| 合計ジャッジ時間 | 5,978 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | -- * 3 |
| other | AC * 8 WA * 23 TLE * 1 -- * 9 |
ソースコード
// {{{ Templates
#include <bits/stdc++.h>
#define show(x) cerr << #x << " = " << x << endl
using namespace std;
using ll = long long;
using pii = pair<int, int>;
using vi = vector<int>;
template <typename T>
ostream& operator<<(ostream& os, const vector<T>& v)
{
os << "sz:" << v.size() << "\n[";
for (const auto& p : v) {
os << p << ",";
}
os << "]\n";
return os;
}
template <typename S, typename T>
ostream& operator<<(ostream& os, const pair<S, T>& p)
{
os << "(" << p.first << "," << p.second
<< ")";
return os;
}
constexpr ll MOD = (ll)1e9 + 7LL;
template <typename T>
constexpr T INF = numeric_limits<T>::max() / 100;
// }}}
int N;
struct Graph {
Graph(const int n)
{
edge.resize(n);
}
void addEdge(const int from, const int to)
{
edge[from].push_back(to);
}
vector<vector<int>> edge;
};
struct Polynomial {
Polynomial() : coeff(N + 1, 0), degree(0) {}
static Polynomial monomial(const ll coe, const int deg)
{
Polynomial p;
p.coeff[deg] = coe;
p.degree = deg;
return p;
}
Polynomial operator+(const Polynomial& p) const
{
Polynomial P;
if (degree >= p.degree) {
for (int i = 0; i <= p.degree; i++) {
P.coeff[i] = (coeff[i] + p.coeff[i]) % MOD;
}
} else {
for (int i = 0; i <= degree; i++) {
P.coeff[i] = (coeff[i] + p.coeff[i]) % MOD;
}
for (int i = degree + 1; i <= p.degree; i++) {
P.coeff[i] = p.coeff[i];
}
}
P.degree = max(degree, p.degree);
return (*this);
}
Polynomial& operator+=(const Polynomial& p)
{
if (degree >= p.degree) {
for (int i = 0; i <= p.degree; i++) {
coeff[i] += p.coeff[i];
coeff[i] = coeff[i] % MOD;
}
} else {
for (int i = 0; i <= degree; i++) {
coeff[i] += p.coeff[i];
coeff[i] = coeff[i] % MOD;
}
for (int i = degree + 1; i <= p.degree; i++) {
coeff[i] = p.coeff[i];
coeff[i] = coeff[i] % MOD;
}
}
degree = max(degree, p.degree);
return (*this);
}
Polynomial operator*(const Polynomial& p) const
{
Polynomial P;
P.degree = degree + p.degree;
for (int i = 0; i <= P.degree; i++) {
ll sum = 0;
for (int j = 0; j <= min(degree, i); j++) {
sum = (sum + coeff[j] * p.coeff[i - j] % MOD) % MOD;
}
P.coeff[i] = sum;
}
return P;
}
int degree = 0;
vector<ll> coeff;
};
ostream& operator<<(ostream& os, const Polynomial& p)
{
for (int i = 0; i <= p.degree; i++) {
if (i > 0) {
os << " + ";
}
os << p.coeff[i];
if (i > 0) {
os << "x^" << i;
}
}
os << endl;
return os;
}
int size_dfs(const Graph& g, const int s, vector<int>& size)
{
int num = 1;
for (const int to : g.edge[s]) {
num += size_dfs(g, to, size);
}
size[s] = num;
return num;
}
Polynomial dp_dfs(const Graph& g, const int s, const vector<int>& size)
{
Polynomial P = Polynomial::monomial(1LL, size[s]);
Polynomial Product = Polynomial::monomial(1LL, 0);
for (const int to : g.edge[s]) {
Product = Product * dp_dfs(g, to, size);
}
P += Product;
return P;
}
int main()
{
cin.tie(0);
ios::sync_with_stdio(false);
int K;
cin >> N >> K;
Graph g(N);
for (int i = 0; i < N - 1; i++) {
int a, b;
cin >> a >> b;
g.addEdge(a, b);
}
vector<int> size(N, 0);
size_dfs(g, 0, size);
cout << dp_dfs(g, 0, size).coeff[K] << endl;
return 0;
}