結果

問題 No.1094 木登り / Climbing tree
ユーザー onsen_manjuuuonsen_manjuuu
提出日時 2020-06-24 03:18:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,560 ms / 2,000 ms
コード長 2,464 bytes
コンパイル時間 2,004 ms
コンパイル使用メモリ 183,780 KB
実行使用メモリ 66,432 KB
最終ジャッジ日時 2024-09-14 22:29:03
合計ジャッジ時間 34,810 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1,514 ms
60,800 KB
testcase_02 AC 319 ms
66,432 KB
testcase_03 AC 305 ms
6,272 KB
testcase_04 AC 326 ms
28,288 KB
testcase_05 AC 490 ms
53,240 KB
testcase_06 AC 786 ms
21,376 KB
testcase_07 AC 1,555 ms
60,868 KB
testcase_08 AC 1,529 ms
60,800 KB
testcase_09 AC 1,508 ms
60,784 KB
testcase_10 AC 1,528 ms
60,800 KB
testcase_11 AC 1,463 ms
60,792 KB
testcase_12 AC 1,438 ms
60,800 KB
testcase_13 AC 1,492 ms
60,872 KB
testcase_14 AC 1,489 ms
60,784 KB
testcase_15 AC 606 ms
17,152 KB
testcase_16 AC 925 ms
51,200 KB
testcase_17 AC 769 ms
31,744 KB
testcase_18 AC 694 ms
24,448 KB
testcase_19 AC 858 ms
43,392 KB
testcase_20 AC 1,560 ms
60,892 KB
testcase_21 AC 778 ms
33,792 KB
testcase_22 AC 1,531 ms
60,808 KB
testcase_23 AC 1,497 ms
60,800 KB
testcase_24 AC 1,492 ms
60,800 KB
testcase_25 AC 1,460 ms
60,800 KB
testcase_26 AC 1,468 ms
60,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;
using ll = long long;

//constructor: LCA(graph);
template<class T> 
class LCA_weight {
private:
    int n;
    int D = 30;                        //hight
    vector<int> depth;                 //depth from root
    vector<vector<pair<int,T>>> hen;   //tree
    vector<vector<int>> par;           //doubling array
    vector<T> dista;                    //distance form root

    void dfs(int v, int p, int dep, T dep_dist) {
        par[v][0] = p;
        depth[v] = dep;
        dista[v] = dep_dist;
        for(auto i : hen[v]) {
            if(i.first == p)continue;
            dfs(i.first, v, dep + 1, dep_dist + i.second);
        }
    }

public:

    LCA_weight(const vector<vector<pair<int,T>>>& hen):hen(hen) {
        n = hen.size();
        par.resize(n, vector<int>(D + 1));
        depth.resize(n);
        dista.resize(n);

        dfs(0, -1, 0, 0);
        for(int i = 0; i < D; i++) {
            for(int j = 0; j < n; j++) {
                if(par[j][i] == -1)par[j][i + 1] = -1;
                else par[j][i + 1] = par[par[j][i]][i];
            }
        }
    }

    //go back to root
    int back(int v, int dist) {
        for(int i = 0; i < D; i++)if((1 << i) & dist) {
            if(v == -1)return v;
            v = par[v][i];
        }
        return v;
    }



    //get LCA
    int get(int u, int v) {
        int ret = 0;
        if(depth[u] > depth[v])swap(u, v);
        ret = depth[v] - depth[u];
        v = back(v, ret);
        if(u == v)return v;

        int lef = 0, rig = n;
        while(rig - lef > 1) {
            int mid = (rig + lef) / 2;
            (back(u, mid) == back(v, mid) ? rig : lef) = mid;
        }
        return back(v, rig);
    }

    //u-v path distance
    T dist(int u, int v) {
        int lca = get(u, v);
        return (dista[u] + dista[v]) - dista[lca] * 2;
    }

    //print parents
    void print(int i) {
        cerr << "[";
        for(int j = 0; j < n; j++)cerr << par[j][i] << (j == n - 1 ? "" : ",");
        cerr << "]";
    }

};

int main()
{
    int n;
    cin >> n;
    vector<vector<pair<int,int>>> hen(n);
    for(int i = 0; i < n - 1; i++) {
        int a, b, c; cin >> a >> b >> c; a--, b--;
        hen[a].emplace_back(b, c);
        hen[b].emplace_back(a, c);
    }
    LCA_weight<int> tree(hen);
    int q; cin >> q;
    while(q--) {
        int s, t; cin >> s >> t;
        cout << tree.dist(s - 1, t - 1) << endl;
    }
}
0