結果
問題 | No.1094 木登り / Climbing tree |
ユーザー | けーむ |
提出日時 | 2020-06-30 14:46:12 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,737 bytes |
コンパイル時間 | 2,986 ms |
コンパイル使用メモリ | 187,652 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-14 22:26:25 |
合計ジャッジ時間 | 9,345 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
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 | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define rep(i, n) for(ll i = 0, i##_len = (n); i < i##_len; i++) #define reps(i, s, n) for(ll i = (s), i##_len = (n); i < i##_len; i++) #define rrep(i, n) for(ll i = (n) - 1; i >= 0; i--) #define rreps(i, e, n) for(ll i = (n) - 1; i >= (e); i--) #define all(x) (x).begin(), (x).end() #define rall(x) (x).rbegin(), (x).rend() #define sz(x) ((ll)(x).size()) #define len(x) ((ll)(x).length()) #define endl "\n" template<class T> struct LowestCommonAncestor { private: const int LOG; vector<int> dep; const vector<vector<T>> &g; vector<vector<int>> table; void dfs(int idx, int par, int d) { table[0][idx] = par; dep[idx] = d; for(auto &to : g[idx]) { if(to != par) dfs(to, idx, d + 1); } } public: LowestCommonAncestor(const vector<vector<T>> &g, int root) : g(g), dep(g.size()), LOG(32 - __builtin_clz(g.size())) { table.assign(LOG, vector<int>(g.size(), -1)); dfs(root, -1, 0); for(int k = 0; k + 1 < LOG; k++) { for(int i = 0; i < table[k].size(); i++) { if(table[k][i] == -1) table[k + 1][i] = -1; else table[k + 1][i] = table[k][table[k][i]]; } } } int query(int u, int v) { if(dep[u] > dep[v]) swap(u, v); for(int i = LOG - 1; i >= 0; i--) { if(((dep[v] - dep[u]) >> i) & 1) v = table[i][v]; } if(u == v) return u; for(int i = LOG - 1; i >= 0; i--) { if(table[i][u] != table[i][v]) { u = table[i][u]; v = table[i][v]; } } return table[0][u]; } }; ll n; vector<vector<pair<ll, ll>>> g; vector<vector<ll>> gv; vector<ll> dist; void dfs(ll v, ll p = -1) { for(auto &x : g[v]) { ll u = x.first, cost = x.second; if (u == p) continue; if (dist[u] != -1) continue; dist[u] = dist[v] + cost; dfs(u, v); } } int main() { cin.tie(0); ios::sync_with_stdio(false); ifstream in("input.txt"); cin.rdbuf(in.rdbuf()); cin >> n; g.resize(n); gv.resize(n); rep(i, n - 1) { ll a, b, c; cin >> a >> b >> c; a--; b--; g[a].push_back(make_pair(b, c)); g[b].push_back(make_pair(a, c)); gv[a].push_back(b); gv[b].push_back(a); } dist.resize(n, -1); dist[0] = 0; dfs(0); LowestCommonAncestor<ll> lca(gv, 0); ll q; cin >> q; rep(i, q) { ll s, t; cin >> s >> t; s--; t--; ll v = lca.query(s, t); cout << (dist[s] + dist[t] - 2 * dist[v]) << endl; } return 0; }