// ダブリング、O(N^2logN) #line 2 "lib/tree/lca.cpp" #line 2 "lib/template.cpp" #ifndef LOCAL #pragma GCC diagnostic warning "-w" #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #pragma GCC target("avx") #endif #include #include #include #include #include #include #include #include #include #include #include using namespace std; using ll = long long; using ull = unsigned long long; using VI = vector; using VVI = vector>; using VLL = vector; using VVLL = vector>; using VB = vector; using PII = pair; using PLL = pair; constexpr int INF = 1000000007; constexpr ll INF_LL = 1'000'000'000'000'000'007; #define all(x) begin(x), end(x) #define rall(x) rbegin(x), rend(x) #define newl '\n' // loops rep(until) / rep(var, until) / rep(var, from, until) / repr (reversed order) #define OVERLOAD3(_1, _2, _3, name, ...) name #define rep(...) OVERLOAD3(__VA_ARGS__, REPEAT_FROM_UNTIL, REPEAT_UNTIL, REPEAT)(__VA_ARGS__) #define REPEAT(times) REPEAT_CNT(_repeat, __COUNTER__, times) #define REPEAT_CNT(_repeat, cnt, times) REPEAT_CNT_CAT(_repeat, cnt, times) #define REPEAT_CNT_CAT(_repeat, cnt, times) REPEAT_FROM_UNTIL(_repeat ## cnt, 0, times) #define REPEAT_UNTIL(name, times) REPEAT_FROM_UNTIL(name, 0, times) #define REPEAT_FROM_UNTIL(name, from, until) for (int name = from, name ## __until = (until); name < name ## __until; name++) #define repr(...) OVERLOAD3(__VA_ARGS__, REPR_FROM_UNTIL, REPR_UNTIL, REPEAT)(__VA_ARGS__) #define REPR_UNTIL(name, times) REPR_FROM_UNTIL(name, 0, times) #define REPR_FROM_UNTIL(name, from, until) for (int name = (until)-1, name ## __from = (from); name >= name ## __from; name--) template bool chmin(T& var, U x) { if (var > x) { var = x; return true; } else return false; } template bool chmax(T& var, U x) { if (var < x) { var = x; return true; } else return false; } ll power(ll e, ll t, ll mod = INF_LL) { ll res = 1; for (; t; t >>= 1, (e *= e) %= mod) if (t & 1) (res *= e) %= mod; return res; } ll choose(ll n, int r) { chmin(r, n-r); if (r < 0) return 0; ll res = 1; rep(i, r) res *= n-i, res /= i+1; return res; } template T divceil(T m, U d) { return (m + d - 1) / d; } template vector make_v(size_t a, T b) { return vector(a, b); } template auto make_v(size_t a, Ts... ts) { return vector(a, make_v(ts...)); } // debugging stuff #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wmisleading-indentation" #define repi(it, ds) for (auto it = ds.begin(); it != ds.end(); it++) class DebugPrint { public: template DebugPrint& operator <<(const T& v) { #ifdef LOCAL cerr << v; #endif return *this; } } debugos; template DebugPrint& operator<<(DebugPrint& os, const vector& vec) { os << "{"; for (int i = 0; i < vec.size(); i++) os << vec[i] << (i + 1 == vec.size() ? "" : ", "); os << "}"; return os; } template DebugPrint& operator<<(DebugPrint& os, const map& map_var) { os << "{"; repi(itr, map_var) { os << * itr; itr++; if (itr != map_var.end()) os << ", "; itr--; } os << "}"; return os; } template < typename T> DebugPrint& operator<<(DebugPrint& os, const set& set_var) { os << "{"; repi( itr, set_var) { os << *itr; itr++; if (itr != set_var.end()) os << ", "; itr--; } os << "}"; return os; } template DebugPrint& operator<<(DebugPrint& os, const pair& p) { os << "(" << p.first << ", " << p.second << ")"; return os; } void dump_func( ) { debugos << newl; } template void dump_func(Head &&head, Tail &&... tail) { debugos << head; if (sizeof...(Tail) > 0) { debugos << ", "; } dump_func(forward (tail)...); } #ifdef LOCAL #define dump(...) debugos << " " << string(#__VA_ARGS__) << ": " << "[" << to_string(__LINE__) \ << ":" << __FUNCTION__ << "]" << newl << " ", dump_func(__VA_ARGS__) #else #define dump(...) #endif #pragma GCC diagnostic pop #line 2 "lib/graph/graph.cpp" #line 4 "lib/graph/graph.cpp" struct Edge { int to; ll cost; Edge(int _to) : to(_to), cost(1) {} Edge(int _to, ll _cost) : to(_to), cost(_cost) {} operator int() const { return to; } }; using Graph = vector>; #line 2 "lib/tree/dfs.cpp" #line 2 "lib/util/fix.cpp" #line 4 "lib/util/fix.cpp" template class FixPoint : private F { public: explicit constexpr FixPoint(F&& f) : F(forward(f)) {} template constexpr decltype(auto) operator()(Args&&... args) const { return F::operator()(*this, forward(args)...); } }; template decltype(auto) fix(F&& f) noexcept { return FixPoint{forward(f)}; } #line 6 "lib/tree/dfs.cpp" struct DFS { VI subtree_sz, par; VLL dist; }; // tree DFS dfs(const Graph& graph, int root = 0) { int n = graph.size(); DFS res; res.subtree_sz = VI(n, 1); res.par = VI(n, -1); res.dist = VLL(n, INF_LL); res.dist[root] = 0; fix([&](auto f, auto v)->void{ for (auto e : graph[v]) if (e.to != res.par[v]) res.dist[e.to] = res.dist[v] + e.cost, res.par[e.to] = v, f(e.to), res.subtree_sz[v] += res.subtree_sz[e.to]; })(root); return res; } #line 6 "lib/tree/lca.cpp" struct LCA { private: const int n; const int log2_n; public: vector> parent; vector depth; LCA(const Graph& g, int root = 0) : n(g.size()), log2_n(32 - __builtin_clz(n) + 1), parent(log2_n, vector(n)), depth(n) { fix([&](auto f, int v, int p, int d) -> void { parent[0][v] = p; depth[v] = d; for (auto& e : g[v]) { if (e.to != p) f(e.to, v, d + 1); } })(root, -1, 0); rep(k, log2_n - 1) { rep(v, n) { if (parent[k][v] < 0) parent[k + 1][v] = -1; else parent[k + 1][v] = parent[k][parent[k][v]]; } } } public: int operator()(int u, int v) { if (depth[u] > depth[v]) swap(u, v); for (int k = 0; k < log2_n; k++) { if ((depth[v] - depth[u]) >> k & 1) { v = parent[k][v]; } } if (u == v) return u; for (int k = log2_n - 1; k >= 0; k--) { if (parent[k][u] != parent[k][v]) { u = parent[k][u]; v = parent[k][v]; } } return parent[0][u]; } int dist(int u, int v) { return depth[u] + depth[v] - depth[(*this)(u, v)] * 2; } }; #line 2 "main.cpp" int main() { cin.tie(0); ios_base::sync_with_stdio(false); int n; cin >> n; Graph graph(n); rep(n-1) { int u, v; cin >> u >> v; u--; v--; graph[u].emplace_back(v); graph[v].emplace_back(u); } LCA lca(graph); VLL res(n); rep(i, n) rep(j, i+1, n) res[lca(i,j)]++; rep(i, n) res[i] *= 2; rep(i, n) res[i]++; rep(i, n) cout << res[i] << newl; }