結果
問題 | No.1094 木登り / Climbing tree |
ユーザー | granddaifuku |
提出日時 | 2020-06-25 20:49:46 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 731 ms / 2,000 ms |
コード長 | 2,871 bytes |
コンパイル時間 | 1,983 ms |
コンパイル使用メモリ | 173,524 KB |
実行使用メモリ | 50,628 KB |
最終ジャッジ日時 | 2024-04-25 18:30:40 |
合計ジャッジ時間 | 19,259 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 674 ms
41,152 KB |
testcase_02 | AC | 118 ms
50,628 KB |
testcase_03 | AC | 167 ms
6,940 KB |
testcase_04 | AC | 152 ms
19,340 KB |
testcase_05 | AC | 251 ms
35,912 KB |
testcase_06 | AC | 354 ms
14,664 KB |
testcase_07 | AC | 706 ms
41,024 KB |
testcase_08 | AC | 693 ms
41,148 KB |
testcase_09 | AC | 708 ms
40,968 KB |
testcase_10 | AC | 684 ms
41,024 KB |
testcase_11 | AC | 724 ms
41,028 KB |
testcase_12 | AC | 731 ms
40,972 KB |
testcase_13 | AC | 682 ms
40,976 KB |
testcase_14 | AC | 686 ms
41,024 KB |
testcase_15 | AC | 371 ms
13,440 KB |
testcase_16 | AC | 526 ms
38,984 KB |
testcase_17 | AC | 429 ms
24,152 KB |
testcase_18 | AC | 410 ms
18,896 KB |
testcase_19 | AC | 489 ms
32,836 KB |
testcase_20 | AC | 689 ms
41,152 KB |
testcase_21 | AC | 449 ms
25,792 KB |
testcase_22 | AC | 677 ms
41,028 KB |
testcase_23 | AC | 674 ms
41,024 KB |
testcase_24 | AC | 663 ms
41,152 KB |
testcase_25 | AC | 693 ms
41,152 KB |
testcase_26 | AC | 648 ms
41,024 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for(int i = 0; i < (int)n; ++i) #define FOR(i, a, b) for(int i = a; i < (int)b; ++i) #define rrep(i, n) for(int i = ((int)n - 1); i >= 0; --i) using ll = long long; using ld = long double; const ll INF = 1e18; const int Inf = 1e9; const double EPS = 1e-9; const int MOD = 1e9 + 7; template <typename T> class LCA { public: int n, log_v = 0; vector<int> depth; vector<T> costs; vector<vector<int> > to; vector<vector<T> > cost; vector<vector<int> > parent; LCA() {} LCA(int n_): n(n_) { while ((1 << log_v) < n) ++log_v; depth.assign(n, 0); costs.assign(n, 0); to = vector<vector<int> >(n); cost = vector<vector<T> >(n); parent = vector<vector<int> >(log_v, vector<int>(n, 0)); } void init(int root = 0) { dfs(root); rep (i, log_v - 1) { rep (j, n) parent[i + 1][j] = parent[i][parent[i][j]]; } } void addEdge(int u, int v, T c = 0) { to[u].push_back(v); to[v].push_back(u); cost[u].push_back(c); cost[v].push_back(c); } void dfs(int v, int p = -1, int d = 0, T c = 0) { if (p != -1) parent[0][v] = p; depth[v] = d; costs[v] = c; rep (i, to[v].size()) { int e = to[v][i]; if (e == p) continue; dfs(e, v, d + 1, c + cost[v][i]); } } int query(int u, int v) { if (depth[u] > depth[v]) swap(u, v); rep (i, log_v) { if ((depth[v] - depth[u]) >> i & 1) v = parent[i][v]; } if (u == v) return u; for (int i = log_v - 1; i >= 0; --i) { if (parent[i][u] != parent[i][v]) { u = parent[i][u]; v = parent[i][v]; } } return parent[0][u]; } int length(int u, int v) { return depth[u] + depth[v] - 2 * depth[query(u, v)]; } T dist(int u, int v) { return costs[u] + costs[v] - 2 * costs[query(u, v)]; } // is x on the path u - v bool isOnPath(int u, int v, int x) { return length(u, x) + length(v, x) == length(u, v); } }; int main() { cin.tie(nullptr); ios::sync_with_stdio(0); int n, q; cin >> n; LCA<int> lca = LCA<int>(n); rep (i, n - 1) { int a, b, c; cin >> a >> b >> c; lca.addEdge(a - 1, b - 1, c); } lca.init(); cin >> q; rep (i, q) { int s, t; cin >> s >> t; cout << lca.dist(s - 1, t - 1) << endl; } return 0; }