cp-documentation

This documentation is automatically generated by online-judge-tools/verification-helper

View the Project on GitHub zawa-tin/cp-documentation

:heavy_check_mark: Test/AOJ/0465.test.cpp

Depends on

Code

#define PROBLEM "https://onlinejudge.u-aizu.ac.jp/problems/0465"

#include "../../Src/Template/IOSetting.hpp"
#include "../../Src/Graph/Tree/HeavyLightDecomposition.hpp"

#include <cassert>
#include <iostream>
#include <utility>
#include <vector>

#include "atcoder/modint"
using mint = atcoder::modint998244353;
using namespace zawa;

int main() {
    SetFastIO();

    int N;
    std::cin >> N;
    std::vector<std::vector<int>> T(N);
    for (int _{} ; _ < N - 1 ; _++) {
        int s, t;
        std::cin >> s >> t;
        s--; t--;
        T[s].push_back(t);
        T[t].push_back(s);
    }
    HeavyLightDecomposition hld(T, 0);
    std::vector<mint> prod(N), invprod(N);
    auto dfs{[&](auto dfs, int v, int p) -> void {
        prod[v] = (p == -1 ? mint::raw(1) : prod[p] * mint{hld.size(p) - hld.size(v)});
        invprod[v] = prod[v].inv();
        for (auto x : T[v]) if (x != p) dfs(dfs, x, v);
    }};
    dfs(dfs, 0, -1);
    int Q;
    std::cin >> Q;
    while (Q--) {
        int u, v;
        std::cin >> u >> v;
        u--; v--;
        if (hld.depth(u) < hld.depth(v)) std::swap(u, v);
        int lca{(int)hld.lca(u, v)};
        assert(u != lca);
        if (v == lca) {
            auto a{hld.levelAncestor(u, hld.depth(u) - hld.depth(v) - 1)};
            assert(a != hld.Invalid());
            mint ans{prod[u] * invprod[a]};
            std::cout << ans.val() << '\n';
        } 
        else {
            auto a{hld.levelAncestor(u, hld.depth(u) - hld.depth(lca) - 1)};
            auto b{hld.levelAncestor(v, hld.depth(v) - hld.depth(lca) - 1)};
            assert(a != hld.Invalid());
            assert(b != hld.Invalid());
            mint ans{1};
            ans *= prod[u] * invprod[a];
            ans *= mint{N - hld.size(a) - hld.size(b)};
            ans *= prod[v] * invprod[b];
            std::cout << ans.val() << '\n';
        }
    }
}
Traceback (most recent call last):
  File "/opt/hostedtoolcache/Python/3.13.5/x64/lib/python3.13/site-packages/onlinejudge_verify/documentation/build.py", line 71, in _render_source_code_stat
    bundled_code = language.bundle(stat.path, basedir=basedir, options={'include_paths': [basedir]}).decode()
                   ~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/opt/hostedtoolcache/Python/3.13.5/x64/lib/python3.13/site-packages/onlinejudge_verify/languages/cplusplus.py", line 187, in bundle
    bundler.update(path)
    ~~~~~~~~~~~~~~^^^^^^
  File "/opt/hostedtoolcache/Python/3.13.5/x64/lib/python3.13/site-packages/onlinejudge_verify/languages/cplusplus_bundle.py", line 401, in update
    self.update(self._resolve(pathlib.Path(included), included_from=path))
                ~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/opt/hostedtoolcache/Python/3.13.5/x64/lib/python3.13/site-packages/onlinejudge_verify/languages/cplusplus_bundle.py", line 260, in _resolve
    raise BundleErrorAt(path, -1, "no such header")
onlinejudge_verify.languages.cplusplus_bundle.BundleErrorAt: atcoder/modint: line -1: no such header
Back to top page