Submission #5377871
Source Code Expand
#include <bits/stdc++.h>
using namespace std;
using VS = vector<string>; using LL = long long;
using VI = vector<int>; using VVI = vector<VI>;
using PII = pair<int, int>; using PLL = pair<LL, LL>;
using VL = vector<LL>; using VVL = vector<VL>;
#define ALL(a) begin((a)),end((a))
#define RALL(a) (a).rbegin(), (a).rend()
#define SZ(a) int((a).size())
#define SORT(c) sort(ALL((c)))
#define RSORT(c) sort(RALL((c)))
#define UNIQ(c) (c).erase(unique(ALL((c))), end((c)))
#define FOR(i, s, e) for (int(i) = (s); (i) < (e); (i)++)
#define FORR(i, s, e) for (int(i) = (s); (i) > (e); (i)-form-)
//#pragma GCC optimize ("-O3")
#ifdef YANG33
#include "mydebug.hpp"
#else
#define DD(x)
#endif
const int INF = 1e9; const LL LINF = 1e16;
const LL MOD = 1000000007; const double PI = acos(-1.0);
int DX[8] = { 0, 0, 1, -1, 1, 1, -1, -1 }; int DY[8] = { 1, -1, 0, 0, 1, -1, 1, -1 };
template <class N, class E>
struct Rerooting {
int n;
const vector<vector<E>>& G;
vector<N> subtreesum;
vector<vector<N>> dp; // L
void dfs1(int v, int p) {
subtreesum[v] = N();
for (auto e : G[v]) {
int nx = e.to;
if (nx == p) continue;
dfs1(nx, v);
subtreesum[v] = subtreesum[v] + subtreesum[nx].include_e(v, e);
}
subtreesum[v] = subtreesum[v].include_v(v);
}
void dfs2(int v, int p, N top) {
int deg = int(G[v].size());
dp[v] = vector<N>(deg + 1);
dp[v][0] = N();
for (int i = 0; i < deg; i++) {
int nx = G[v][i].to;
dp[v][i + 1] =
dp[v][i] + (nx == p ? top : subtreesum[nx]).include_e(v, G[v][i]);
}
N rnode = N();
dp[v].back() = dp[v].back().include_v(v);
for (int i = deg - 1; i >= 0; i--) {
dp[v][i] = (dp[v][i] + rnode).include_v(v);
int nx = G[v][i].to;
if (nx != p) dfs2(nx, v, dp[v][i]);
rnode = rnode + (nx == p ? top : subtreesum[nx]).include_e(v, G[v][i]);
}
}
Rerooting(const vector<vector<E>>& _g) : n(int(_g.size())), G(_g), subtreesum(n), dp(n) {
dfs1(0, -1);
dfs2(0, -1, N());
}
};
template <class N, class E> vector<vector<N>> Rerooting_get(const vector<vector<E>>& g) {
return Rerooting<N, E>(g).dp;
}
class GModInt {
public:
static int Mod; int x; GModInt() : x(0) { }GModInt(signed sig) { if ((x = sig % Mod + Mod) >= Mod) x -= Mod; }GModInt(signed long long sig) { if ((x = sig % Mod + Mod) >= Mod) x -= Mod; }int get() const { return x; } GModInt &operator+=(GModInt that) { if ((x += that.x) >= Mod) x -= Mod; return *this; } GModInt &operator-=(GModInt that) { if ((x += Mod - that.x) >= Mod) x -= Mod; return *this; }GModInt &operator*=(GModInt that) { x = (unsigned long long)x * that.x % Mod; return *this; }GModInt &operator/=(GModInt that) { return *this *= that.inverse(); }GModInt operator+(GModInt that) const { return GModInt(*this) += that; }GModInt operator-(GModInt that) const { return GModInt(*this) -= that; }GModInt operator*(GModInt that) const { return GModInt(*this) *= that; }GModInt operator/(GModInt that) const { return GModInt(*this) /= that; }GModInt inverse() const { long long a = x, b = Mod, u = 1, v = 0; while (b) { long long t = a / b; a -= t * b; std::swap(a, b); u -= t * v; std::swap(u, v); }return GModInt(u); }bool operator==(GModInt that) const { return x == that.x; }bool operator!=(GModInt that) const { return x != that.x; }GModInt operator-() const { GModInt t; t.x = x == 0 ? 0 : Mod - x; return t; }
};
int GModInt::Mod = 0;
typedef GModInt mint;
void solve_EDPC_V() {
cin.tie(0);
ios_base::sync_with_stdio(false);
struct Edge {
int to;
};
int N; cin >> N;
vector<vector<Edge>>G(N);
int M; cin >> M;
GModInt::Mod = M;
FOR(i, 0, N - 1) {
int a, b; cin >> a >> b;
a--, b--;
G[a].push_back(Edge({ b }));
G[b].push_back(Edge({ a }));
}
struct Node {
mint black;
Node(mint ini =1) :black(ini) {}
Node include_e(int, const Edge&e) const {
return { (black + 1) };
}
Node operator + (const Node& r) const {
return { (black * r.black) };
}
Node include_v(int v) const {
return *this;
}
};
//Rerooting<Node,Edge> tree(G);
//auto tree_res = tree.dp;
auto tree_res = Rerooting_get<Node>(G);
FOR(i, 0, N) {
cout << tree_res[i].back().black.get() << "\n";
}
}
int main() {
solve_EDPC_V();
}
Submission Info
| Submission Time |
|
| Task |
V - Subtree |
| User |
Yang33 |
| Language |
C++14 (GCC 5.4.1) |
| Score |
100 |
| Code Size |
4355 Byte |
| Status |
AC |
| Exec Time |
75 ms |
| Memory |
16892 KiB |
Judge Result
| Set Name |
All |
| Score / Max Score |
100 / 100 |
| Status |
|
| Set Name |
Test Cases |
| All |
0_00, 0_01, 0_02, 0_03, 1_00, 1_01, 1_02, 1_03, 1_04, 1_05, 1_06, 1_07, 1_08, 1_09, 1_10, 1_11, 1_12, 1_13, 1_14, 1_15, 1_16, 1_17, 1_18, 1_19, 1_20, 1_21, 1_22, 1_23, 1_24, 1_25, 1_26, 1_27, 1_28, 1_29, 1_30, 1_31 |
| Case Name |
Status |
Exec Time |
Memory |
| 0_00 |
AC |
1 ms |
256 KiB |
| 0_01 |
AC |
1 ms |
256 KiB |
| 0_02 |
AC |
1 ms |
256 KiB |
| 0_03 |
AC |
1 ms |
256 KiB |
| 1_00 |
AC |
1 ms |
256 KiB |
| 1_01 |
AC |
1 ms |
256 KiB |
| 1_02 |
AC |
74 ms |
15872 KiB |
| 1_03 |
AC |
75 ms |
15864 KiB |
| 1_04 |
AC |
52 ms |
12408 KiB |
| 1_05 |
AC |
55 ms |
12912 KiB |
| 1_06 |
AC |
61 ms |
12280 KiB |
| 1_07 |
AC |
62 ms |
12912 KiB |
| 1_08 |
AC |
63 ms |
12288 KiB |
| 1_09 |
AC |
66 ms |
13048 KiB |
| 1_10 |
AC |
58 ms |
12416 KiB |
| 1_11 |
AC |
57 ms |
13048 KiB |
| 1_12 |
AC |
61 ms |
12416 KiB |
| 1_13 |
AC |
62 ms |
12924 KiB |
| 1_14 |
AC |
63 ms |
12160 KiB |
| 1_15 |
AC |
62 ms |
12792 KiB |
| 1_16 |
AC |
66 ms |
11648 KiB |
| 1_17 |
AC |
67 ms |
12408 KiB |
| 1_18 |
AC |
69 ms |
11648 KiB |
| 1_19 |
AC |
69 ms |
12280 KiB |
| 1_20 |
AC |
68 ms |
11520 KiB |
| 1_21 |
AC |
71 ms |
12152 KiB |
| 1_22 |
AC |
70 ms |
11520 KiB |
| 1_23 |
AC |
70 ms |
12156 KiB |
| 1_24 |
AC |
68 ms |
11392 KiB |
| 1_25 |
AC |
69 ms |
12156 KiB |
| 1_26 |
AC |
70 ms |
11904 KiB |
| 1_27 |
AC |
70 ms |
12160 KiB |
| 1_28 |
AC |
67 ms |
13312 KiB |
| 1_29 |
AC |
71 ms |
13308 KiB |
| 1_30 |
AC |
71 ms |
14464 KiB |
| 1_31 |
AC |
73 ms |
16892 KiB |