結果
問題 | No.898 tri-βutree |
ユーザー | QCFium |
提出日時 | 2019-10-05 12:29:30 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,436 bytes |
コンパイル時間 | 1,847 ms |
コンパイル使用メモリ | 181,408 KB |
実行使用メモリ | 25,856 KB |
最終ジャッジ日時 | 2024-10-05 13:41:54 |
合計ジャッジ時間 | 9,087 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
ソースコード
#include <bits/stdc++.h> int ri() { int n; scanf("%d", &n); return n; } std::vector<std::vector<std::pair<int, int> > > hen; std::vector<int> depth; std::vector<int64_t> dist; std::vector<std::vector<int> > par; void dfs(int i, int parent, int dep, int64_t d) { if (i) { par[i].push_back(parent); int bit = 0; int cur = parent; while ((1 << bit) < par[cur].size()) { par[i].push_back(cur = par[cur][bit]); bit++; } } depth[i] = dep; dist[i] = d; for (auto j : hen[i]) dfs(j.first, i, dep + 1, d + j.second); } int lca(int i, int j) { if (i == j) return i; if (depth[i] > depth[j]) std::swap(i, j); for (int k = 20; k >= 0; k--) if (depth[j] - (1 << k) >= depth[i]) j = par[j][k]; if (i == j) return i; for (int k = 20; k >= 0; k--) if (k < par[i].size() && par[i][k] != par[j][k]) { i = par[i][k]; j = par[j][k]; } return par[i][0]; } int main() { int n = ri(); int a[n - 1], b[n - 1], c[n - 1]; hen.resize(n); for (int i = 0; i + 1 < n; i++) { a[i] = ri(); b[i] = ri(); c[i] = ri(); hen[a[i]].push_back({b[i], c[i]}); } par.resize(n); depth.resize(n); dist.resize(n); dfs(0, -1, 0, 0); int q = ri(); for (int i = 0; i < q; i++) { int x = ri(); int y = ri(); int z = ri(); int l1 = lca(x, y); int l2 = lca(y, z); int l3 = lca(x, z); int64_t res = dist[x] + dist[y] + dist[z] - (dist[l1] + dist[l2] + dist[l3]); std::cout << res << std::endl; } return 0; }