結果

問題 No.1094 木登り / Climbing tree
ユーザー downerdowner
提出日時 2024-08-22 21:04:07
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 375 ms / 2,000 ms
コード長 2,254 bytes
コンパイル時間 3,776 ms
コンパイル使用メモリ 259,512 KB
実行使用メモリ 37,180 KB
最終ジャッジ日時 2024-08-22 21:04:25
合計ジャッジ時間 14,828 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 315 ms
30,912 KB
testcase_02 AC 96 ms
37,180 KB
testcase_03 AC 46 ms
6,940 KB
testcase_04 AC 74 ms
14,920 KB
testcase_05 AC 136 ms
27,196 KB
testcase_06 AC 131 ms
11,392 KB
testcase_07 AC 333 ms
30,908 KB
testcase_08 AC 341 ms
30,908 KB
testcase_09 AC 323 ms
30,912 KB
testcase_10 AC 352 ms
30,908 KB
testcase_11 AC 334 ms
30,912 KB
testcase_12 AC 328 ms
30,908 KB
testcase_13 AC 375 ms
30,784 KB
testcase_14 AC 322 ms
30,908 KB
testcase_15 AC 131 ms
10,368 KB
testcase_16 AC 234 ms
28,868 KB
testcase_17 AC 214 ms
18,132 KB
testcase_18 AC 150 ms
14,416 KB
testcase_19 AC 203 ms
24,128 KB
testcase_20 AC 340 ms
30,788 KB
testcase_21 AC 204 ms
19,152 KB
testcase_22 AC 336 ms
30,908 KB
testcase_23 AC 319 ms
30,912 KB
testcase_24 AC 314 ms
30,912 KB
testcase_25 AC 324 ms
30,780 KB
testcase_26 AC 319 ms
30,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

template<class T>
struct LowestCommonAncestor{
    vector<vector<int>> parent;
    vector<int> height;
    vector<T> dist;
    LowestCommonAncestor(const vector<vector<pair<int, T>>>& G, int root=0) {
        init(G, root);
    }

    void init(const vector<vector<pair<int, T>>>& G, int root=0) {
        int N = G.size();
        int M = 1; while((1 << M) < N) M++;
        parent.assign(M, vector<int>(N, -1));
        height.assign(N, -1);
        dist.assign(N, -1);
        dfs(G, root, -1, 0, 0);
        for(int lv = 1; lv < M; lv++) {
            for(int i = 0; i < N; i++) {
                if(parent[lv - 1][i] == -1) parent[lv][i] = -1;
                else parent[lv][i] = parent[lv - 1][parent[lv - 1][i]];
            }
        }
    }

    void dfs(const vector<vector<pair<int, T>>>& G, int v, int p, int h, T d) {
        parent[0][v] = p;
        height[v] = h;
        dist[v] = d;
        for(auto [nv, c] : G[v]) {
            if(nv == p) continue;
            dfs(G, nv, v, h + 1, d + c);
        }
    }

    int lca(int u, int v) {
        if(height[u] < height[v]) swap(u, v);
        int M = parent.size();
        for(int lv = 0; lv < M; lv++) {
            if(((height[u] - height[v]) >> lv) & 1) u = parent[lv][u];
        }
        if(u == v) return u;
        for(int lv = M - 1; lv >= 0; lv--) {
            if(parent[lv][u] != parent[lv][v]) {
                u = parent[lv][u];
                v = parent[lv][v];
            }
        }
        return parent[0][u];
    }

    T dist_bitween(int u, int v) { return dist[u] + dist[v] - 2 * dist[lca(u, v)]; }

    int path_len(int u, int v) { return height[u] + height[v] - 2 * height[lca(u, v)]; }
};


int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int N;
    cin >> N;
    vector<vector<pair<int, int>>> G(N);
    for(int i = 0; i < N - 1; i++) {
        int a, b, c;
        cin >> a >> b >> c;
        a--; b--;
        G[a].push_back({b, c});
        G[b].push_back({a, c});
    }

    LowestCommonAncestor<int> lca(G);

    int Q;
    cin >> Q;
    while(Q--) {
        int s, t;
        cin >> s >> t;
        s--; t--;
        cout << lca.dist_bitween(s, t) << "\n";
    }

    return 0;
}
0