結果

問題 No.1094 木登り / Climbing tree
ユーザー downerdowner
提出日時 2024-08-21 02:44:25
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 389 ms / 2,000 ms
コード長 2,639 bytes
コンパイル時間 10,299 ms
コンパイル使用メモリ 250,352 KB
実行使用メモリ 44,744 KB
最終ジャッジ日時 2024-08-21 02:44:48
合計ジャッジ時間 14,540 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 344 ms
33,052 KB
testcase_02 AC 110 ms
44,744 KB
testcase_03 AC 45 ms
6,944 KB
testcase_04 AC 83 ms
16,364 KB
testcase_05 AC 188 ms
29,452 KB
testcase_06 AC 130 ms
13,372 KB
testcase_07 AC 347 ms
34,600 KB
testcase_08 AC 351 ms
33,272 KB
testcase_09 AC 354 ms
34,060 KB
testcase_10 AC 349 ms
32,788 KB
testcase_11 AC 347 ms
33,300 KB
testcase_12 AC 377 ms
32,928 KB
testcase_13 AC 358 ms
33,520 KB
testcase_14 AC 348 ms
34,056 KB
testcase_15 AC 114 ms
12,760 KB
testcase_16 AC 311 ms
35,060 KB
testcase_17 AC 165 ms
22,460 KB
testcase_18 AC 140 ms
17,192 KB
testcase_19 AC 266 ms
29,484 KB
testcase_20 AC 389 ms
33,508 KB
testcase_21 AC 205 ms
23,536 KB
testcase_22 AC 359 ms
32,856 KB
testcase_23 AC 375 ms
33,452 KB
testcase_24 AC 344 ms
33,156 KB
testcase_25 AC 350 ms
33,308 KB
testcase_26 AC 384 ms
33,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define all(x) x.begin(),x.end()
#define rep(i,a,b) for(int i=a;i<=b;i++)
#define rep_r(i,a,b) for(int i=a;i>=b;i--)
#define each(a,x) for (auto& x : a)
using pi = pair<int,int>;
using pl = pair<ll,ll>;
using vi = vector<int>;
using vl = vector<ll>;
#define sz(x) int(x.size())
#define so(x) sort(all(x))
#define so_r(x) sort(all(x),greater<int>())
#define lb lower_bound
#define ub upper_bound
const char nl = '\n';
int dx[4] = {1,-1,0,0};
int dy[4] = {0,0,1,-1};
int bit_cnt(int x){
    return __builtin_popcount(x);
}
ll bex(ll a, ll b, ll mod = 1e9 + 7){ll res = 1LL; while(b){ if (b&1) res = res * a % mod; a = a * a % mod; b >>= 1;} return res;}
template<class t,class u> bool chmax(t&a,u b){if(a<b){a=b;return true;}else return false;}
template<class t,class u> bool chmin(t&a,u b){if(b<a){a=b;return true;}else return false;}

const int MOD = 998244353;
const int N = 5e5 + 5;
const ll INF = 1e16;
// https://yukicoder.me/problems/no/1094
// Brief: undirected weighted tree with N vertices
// i-th edge: A <-> B with cost C
// Q queries: find cost from s[j] to t[j] in each query


// this probably use RMQ
// dist[i,j] = cost[i] + cost[j] - 2 * cost[fa[i,j]] 
vector<pair<int,int>> g[N];
int cost[N];
// https://wiki.vnoi.info/algo/data-structures/lca-binlift.md
int h[N];
int up[N][20];
void dfs(int u, int fa){
    each(g[u],ed){
        int v = ed.first, w = ed.second;
        if (v == fa) continue;
        h[v] = h[u] + 1;
        up[v][0] = u;
        for (int j = 1; j < 20; j++){
            up[v][j] = up[up[v][j-1]][j-1];
        }
        cost[v] = cost[u] + w; 
        dfs(v,u);
    }
}
int lca(int u, int v){
    if (h[u] != h[v]){
        if (h[u] < h[v]) swap(u,v);

        int k = h[u] - h[v]; 
        for (int j = 0; (1 << j) <= k; j++){
            if (k>>j&1) u = up[u][j];
        }
    }
    if (u == v) return u;

    int k = log2(h[u]);
    for (int j = k; j >= 0; j--){
        if (up[u][j] != up[v][j]) {
            u = up[u][j]; 
            v = up[v][j];
        }
    }
    return up[u][0];
}
int calc(int u, int v){
    int fa = lca(u,v);
    return cost[u] + cost[v] - 2 * cost[fa];
}
void solve(){
    int n; cin >> n; 
    rep(_,1,n-1){
        int a,b,c;
        cin >> a >> b >> c;
        g[a].push_back({b,c});
        g[b].push_back({a,c});
    }
    dfs(1,1);
    int q; cin >> q;
    while (q--){
        int s,t; cin >> s >> t;
        cout << calc(s,t) << nl;
    }
}   

int main(){
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);

    int t = 1; 
    // cin >> t;

    while (t--){
        solve();
    }
}
0