結果
問題 | No.898 tri-βutree |
ユーザー | Mister |
提出日時 | 2020-04-27 11:17:33 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 445 ms / 4,000 ms |
コード長 | 3,386 bytes |
コンパイル時間 | 1,126 ms |
コンパイル使用メモリ | 87,580 KB |
実行使用メモリ | 32,384 KB |
最終ジャッジ日時 | 2024-11-08 23:39:51 |
合計ジャッジ時間 | 9,984 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 238 ms
32,384 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 3 ms
5,248 KB |
testcase_07 | AC | 420 ms
29,056 KB |
testcase_08 | AC | 411 ms
29,056 KB |
testcase_09 | AC | 403 ms
29,056 KB |
testcase_10 | AC | 414 ms
29,016 KB |
testcase_11 | AC | 409 ms
29,056 KB |
testcase_12 | AC | 424 ms
28,928 KB |
testcase_13 | AC | 431 ms
29,056 KB |
testcase_14 | AC | 434 ms
29,056 KB |
testcase_15 | AC | 445 ms
29,056 KB |
testcase_16 | AC | 434 ms
28,928 KB |
testcase_17 | AC | 429 ms
29,008 KB |
testcase_18 | AC | 432 ms
29,020 KB |
testcase_19 | AC | 428 ms
29,184 KB |
testcase_20 | AC | 427 ms
28,912 KB |
testcase_21 | AC | 431 ms
29,056 KB |
ソースコード
#include <iostream> #include <vector> template <class Cost = int> struct Edge { int src, dst; Cost cost; Edge(int src = -1, int dst = -1, Cost cost = 1) : src(src), dst(dst), cost(cost){}; bool operator<(const Edge<Cost>& e) const { return this->cost < e.cost; } bool operator>(const Edge<Cost>& e) const { return this->cost > e.cost; } }; template <class Cost = int> struct Graph { std::vector<std::vector<Edge<Cost>>> graph; Graph(int n = 0) : graph(n) {} void span(bool direct, int src, int dst, Cost cost = 1) { graph[src].emplace_back(src, dst, cost); if (!direct) graph[dst].emplace_back(dst, src, cost); } std::vector<Edge<Cost>>& operator[](int v) { return graph[v]; } std::vector<Edge<Cost>> operator[](int v) const { return graph[v]; } int size() const { return graph.size(); } }; template <class Cost> struct LevelAncestor { Graph<Cost> tree; std::vector<std::vector<int>> par; std::vector<int> depth; std::vector<Cost> cdepth; int kmax; void dfs(int v, int p = -1, int d = 0, Cost c = 0) { par[v][0] = p; depth[v] = d; cdepth[v] = c; for (const auto& e : tree[v]) { if (e.dst == p) continue; dfs(e.dst, v, d + 1, c + e.cost); } } LevelAncestor(const Graph<Cost>& tree, int root) : tree(tree), par(tree.size()), depth(tree.size(), -1), cdepth(tree.size()) { kmax = 0; while ((1 << kmax) < (int)tree.size()) ++kmax; for (auto& v : par) v.resize(kmax + 1); dfs(root); for (int k = 1; k <= kmax; ++k) { for (int v = 0; v < tree.size(); ++v) { int p = par[v][k - 1]; par[v][k] = (p == -1 ? -1 : par[p][k - 1]); } } } int climb(int v, int d) const { for (int k = kmax; k >= 0 && v != -1; --k) { if ((1 << k) > d) continue; v = par[v][k]; d -= (1 << k); } return v; } int lca(int u, int v) const { if (depth[u] < depth[v]) std::swap(u, v); if (depth[u] > depth[v]) { u = climb(u, depth[u] - depth[v]); } if (u == v) return u; for (int k = kmax; k >= 0; --k) { if (par[u][k] != par[v][k]) { u = par[u][k]; v = par[v][k]; } } return par[u][0]; } int dist(int u, int v) const { int p = lca(u, v); return depth[u] + depth[v] - depth[p] * 2; } Cost cdist(int u, int v) const { int p = lca(u, v); return cdepth[u] + cdepth[v] - cdepth[p] * 2; } }; using lint = long long; void solve() { int n; std::cin >> n; Graph<lint> graph(n); for (int i = 0; i < n - 1; ++i) { int u, v; lint d; std::cin >> u >> v >> d; graph.span(false, u, v, d); } LevelAncestor<lint> la(graph, 0); int q; std::cin >> q; while (q--) { std::vector<int> vs(3); for (auto& v : vs) std::cin >> v; lint c = 0; for (int i = 0; i < 3; ++i) { c += la.cdist(vs[i], vs[(i + 1) % 3]); } std::cout << c / 2 << std::endl; } } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }