結果

問題 No.898 tri-βutree
ユーザー finefine
提出日時 2019-11-10 00:49:48
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 214 ms / 4,000 ms
コード長 2,714 bytes
コンパイル時間 2,496 ms
コンパイル使用メモリ 181,276 KB
実行使用メモリ 21,856 KB
最終ジャッジ日時 2024-04-26 09:05:56
合計ジャッジ時間 7,655 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
21,856 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 203 ms
18,588 KB
testcase_08 AC 211 ms
18,584 KB
testcase_09 AC 212 ms
18,712 KB
testcase_10 AC 204 ms
18,712 KB
testcase_11 AC 206 ms
18,656 KB
testcase_12 AC 214 ms
18,708 KB
testcase_13 AC 206 ms
18,584 KB
testcase_14 AC 205 ms
18,668 KB
testcase_15 AC 206 ms
18,588 KB
testcase_16 AC 203 ms
18,576 KB
testcase_17 AC 212 ms
18,584 KB
testcase_18 AC 202 ms
18,584 KB
testcase_19 AC 204 ms
18,584 KB
testcase_20 AC 209 ms
18,588 KB
testcase_21 AC 208 ms
18,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;
using P = pair<int, ll>;

struct LCA {
    using Graph = vector< vector<P> >;

    const Graph& g;
    const int LOGV;
    const int root;

    vector< vector<int> > parent;
    vector<int> depth;
    vector<ll> weights;

    LCA(const Graph& g, int root = 0) : g(g), LOGV(32 - __builtin_clz(g.size())), root(root) {
        int V = g.size();
        parent.resize(LOGV, vector<int>(V));
        depth.resize(V);
        weights.resize(V);

        dfs(root, -1, 0, 0);
        for (int k = 0; k + 1 < LOGV; k++) {
            for (int v = 0; v < V; v++) {
                if (parent[k][v] < 0) parent[k + 1][v] = -1;
                else parent[k + 1][v] = parent[k][parent[k][v]];
            }
        }
    }

    void dfs(int v, int p, int d, ll w) {
        parent[0][v] = p;
        depth[v] = d;
        weights[v] = w;
        for (const P& e : g[v]) {
            if (e.first != p) dfs(e.first, v, d + 1, w + e.second);
        }
    }

    int operator()(int u, int v) const {
        if (depth[u] > depth[v]) swap(u, v);
        for (int k = 0; k < LOGV; k++) {
            if ((depth[v] - depth[u]) >> k & 1) {
                v = parent[k][v];
            }
        }
        if (u == v) return u;
        for (int k = LOGV - 1; k >= 0; k--) {
            if (parent[k][u] != parent[k][v]) {
                u = parent[k][u];
                v = parent[k][v];
            }
        }
        return parent[0][u];
    }
};

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    int n;
    cin >> n;
    vector< vector<P> > G(n);
    for (int i = 1; i < n; i++) {
        int u, v;
        ll w;
        cin >> u >> v >> w;
        G[u].emplace_back(v, w);
        G[v].emplace_back(u, w);
    }

    LCA lca(G);
    const vector<int>& depth = lca.depth;
    const vector<ll>& weights = lca.weights;

    int q;
    cin >> q;
    for (int i = 0; i < q; i++) {
        int x, y, z;
        cin >> x >> y >> z;
        int xy = lca(x, y);
        int yz = lca(y, z);
        int zx = lca(z, x);

        int tar = xy;
        int hoge = lca(xy, z);
        ll ans = weights[x] + weights[y] - weights[xy] * 2;
        ans += weights[z] + weights[xy] - weights[hoge] * 2;
        if (depth[tar] < depth[yz]) {
            tar = yz;
            ans = weights[y] + weights[z] - weights[yz] * 2;
            ans += weights[x] + weights[yz] - weights[hoge] * 2;
        }
        if (depth[tar] < depth[zx]) {
            tar = zx;
            ans = weights[z] + weights[x] - weights[zx] * 2;
            ans += weights[y] + weights[zx] - weights[hoge] * 2;
        }
        
        cout << ans << "\n";
    }
    return 0;
}
0