結果

問題 No.1094 木登り / Climbing tree
ユーザー downerdowner
提出日時 2024-08-21 02:14:00
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 774 ms / 2,000 ms
コード長 2,307 bytes
コンパイル時間 4,144 ms
コンパイル使用メモリ 267,928 KB
実行使用メモリ 48,148 KB
最終ジャッジ日時 2024-08-21 02:14:28
合計ジャッジ時間 21,868 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 738 ms
42,748 KB
testcase_02 AC 134 ms
48,148 KB
testcase_03 AC 166 ms
6,940 KB
testcase_04 AC 151 ms
20,096 KB
testcase_05 AC 287 ms
37,496 KB
testcase_06 AC 336 ms
15,088 KB
testcase_07 AC 708 ms
42,616 KB
testcase_08 AC 718 ms
42,740 KB
testcase_09 AC 730 ms
42,744 KB
testcase_10 AC 707 ms
42,748 KB
testcase_11 AC 774 ms
42,748 KB
testcase_12 AC 773 ms
42,744 KB
testcase_13 AC 720 ms
42,744 KB
testcase_14 AC 715 ms
42,612 KB
testcase_15 AC 382 ms
12,800 KB
testcase_16 AC 553 ms
37,352 KB
testcase_17 AC 454 ms
23,088 KB
testcase_18 AC 453 ms
18,116 KB
testcase_19 AC 499 ms
31,308 KB
testcase_20 AC 728 ms
42,744 KB
testcase_21 AC 469 ms
24,568 KB
testcase_22 AC 708 ms
42,744 KB
testcase_23 AC 703 ms
42,668 KB
testcase_24 AC 732 ms
42,620 KB
testcase_25 AC 700 ms
42,748 KB
testcase_26 AC 747 ms
42,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

struct LowestCommonAncestor{
    vector<vector<int>> parent;
    vector<int> dist;
    int M;
    LowestCommonAncestor(const vector<vector<int>>& G, int root=0) {
        init(G, root);
    }

    void init(const vector<vector<int>>& G, int root=0) {
        int N = G.size();
        M = 1; while((1 << M) < N) M++;
        parent.assign(M, vector<int>(N, -1));
        dist.assign(N, -1);
        dfs(G, root, -1, 0);
    }

    void dfs(const vector<vector<int>>& G, int v, int p, int d) {
        parent[0][v] = p;
        dist[v] = d;
        for(int lv = 1; lv < M; lv++) {
            parent[lv][v] = parent[lv - 1][parent[lv - 1][v]];
        }
        for(int nv : G[v]) {
            if(nv == p) continue;
            dfs(G, nv, v, d + 1);
        }
    }

    int lca(int u, int v) {
        if(dist[u] < dist[v]) swap(u, v);
        int M = parent.size();
        for(int lv = 0; lv < M; lv++) {
            if(((dist[u] - dist[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];
    }

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


int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    
    int N;
    cin >> N;
    vector<vector<int>> G(N);
    vector<vector<pair<int, int>>> G2(N);

    for(int i = 0; i < N - 1; i++) {
        int a, b, c;
        cin >> a >> b >> c;
        a--; b--;
        G[a].push_back(b);
        G[b].push_back(a);
        G2[a].push_back({b, c});
        G2[b].push_back({a, c});
    }

    vector<long long> dist(N, -1);
    dist[0] = 0;
    queue<int> q;
    q.push(0);

    while(q.size()) {
        int v = q.front(); q.pop();
        for(auto [nv, c] : G2[v]) {
            if(dist[nv] != -1) continue;
            dist[nv] = dist[v] + c;
            q.push(nv);
        }
    }

    LowestCommonAncestor lca(G, 0);

    int Q;
    cin >> Q;
    while(Q--) {
        int s, t;
        cin >> s >> t;
        s--; t--;
        cout << dist[s] + dist[t] - 2 * dist[lca.lca(s, t)] << endl;
    }


    return 0;
}
0