結果

問題 No.1094 木登り / Climbing tree
ユーザー onsen_manjuuuonsen_manjuuu
提出日時 2020-06-25 01:14:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,186 ms / 2,000 ms
コード長 2,465 bytes
コンパイル時間 2,338 ms
コンパイル使用メモリ 183,324 KB
実行使用メモリ 66,432 KB
最終ジャッジ日時 2024-11-08 05:56:02
合計ジャッジ時間 30,061 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1,121 ms
60,800 KB
testcase_02 AC 364 ms
66,432 KB
testcase_03 AC 236 ms
6,272 KB
testcase_04 AC 288 ms
28,160 KB
testcase_05 AC 481 ms
53,248 KB
testcase_06 AC 580 ms
21,248 KB
testcase_07 AC 1,130 ms
60,928 KB
testcase_08 AC 1,182 ms
60,800 KB
testcase_09 AC 1,139 ms
60,800 KB
testcase_10 AC 1,177 ms
60,800 KB
testcase_11 AC 1,156 ms
60,800 KB
testcase_12 AC 1,164 ms
60,800 KB
testcase_13 AC 1,177 ms
60,800 KB
testcase_14 AC 1,151 ms
60,800 KB
testcase_15 AC 672 ms
17,152 KB
testcase_16 AC 1,005 ms
51,200 KB
testcase_17 AC 824 ms
31,744 KB
testcase_18 AC 760 ms
24,448 KB
testcase_19 AC 948 ms
43,392 KB
testcase_20 AC 1,144 ms
60,800 KB
testcase_21 AC 861 ms
33,920 KB
testcase_22 AC 1,186 ms
60,800 KB
testcase_23 AC 1,137 ms
60,800 KB
testcase_24 AC 1,138 ms
60,800 KB
testcase_25 AC 1,126 ms
60,800 KB
testcase_26 AC 1,136 ms
60,800 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;
 
        for(int i = D; i >= 0; i--) {
            if(par[u][i] != par[v][i]) {
                u = par[u][i];
                v = par[v][i];
            }
        }
        return par[u][0];
    }
 
    //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