結果

問題 No.1094 木登り / Climbing tree
ユーザー downerdowner
提出日時 2024-08-21 03:18:35
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 321 ms / 2,000 ms
コード長 1,559 bytes
コンパイル時間 3,366 ms
コンパイル使用メモリ 262,756 KB
実行使用メモリ 39,248 KB
最終ジャッジ日時 2024-08-21 03:18:50
合計ジャッジ時間 12,734 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 314 ms
30,800 KB
testcase_02 AC 96 ms
39,248 KB
testcase_03 AC 40 ms
6,940 KB
testcase_04 AC 70 ms
14,960 KB
testcase_05 AC 129 ms
27,052 KB
testcase_06 AC 122 ms
11,424 KB
testcase_07 AC 290 ms
30,804 KB
testcase_08 AC 321 ms
30,928 KB
testcase_09 AC 289 ms
30,808 KB
testcase_10 AC 293 ms
30,932 KB
testcase_11 AC 291 ms
30,932 KB
testcase_12 AC 306 ms
30,932 KB
testcase_13 AC 294 ms
30,936 KB
testcase_14 AC 278 ms
30,936 KB
testcase_15 AC 104 ms
10,752 KB
testcase_16 AC 226 ms
30,648 KB
testcase_17 AC 149 ms
19,152 KB
testcase_18 AC 127 ms
15,096 KB
testcase_19 AC 184 ms
25,532 KB
testcase_20 AC 283 ms
30,808 KB
testcase_21 AC 171 ms
20,348 KB
testcase_22 AC 286 ms
30,928 KB
testcase_23 AC 294 ms
30,932 KB
testcase_24 AC 283 ms
30,932 KB
testcase_25 AC 313 ms
30,808 KB
testcase_26 AC 280 ms
30,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

vector<vector<pair<int, int>>> G;
vector<vector<int>> parent;
vector<int> dist, height;
int M = 1;

void dfs(int v, int p) {
    for(auto [nv, c] : G[v]) {
        if(nv == p) continue;
        parent[0][nv] = v;
        height[nv] = height[v] + 1;
        dist[nv] = dist[v] + c;
        dfs(nv, v);
    }
}

int lca(int u, int v) {
    if(height[u] < height[v]) swap(u, v);
    int k = height[u] - height[v];
    for(int lv = 0; (1 << lv) <= k; lv++) {
        if((k >> 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 main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int N;
    cin >> N;
    G.assign(N, vector<pair<int, int>>(0));
    while((1 << M) < N) M++;
    parent.assign(M, vector<int>(N, -1));
    dist.assign(N, 0);
    height.assign(N, 0);

    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});
    }

    dfs(0, -1);
    for(int lv = 1; lv < M; lv++) {
        for(int i = 0; i < N; i++) {
            parent[lv][i] = parent[lv - 1][parent[lv - 1][i]];
        }
    }

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

    return 0;
}
0