結果

問題 No.901 K-ary εxtrεεmε
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-06-18 14:34:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,247 bytes
コンパイル時間 2,891 ms
コンパイル使用メモリ 220,448 KB
実行使用メモリ 19,328 KB
最終ジャッジ日時 2024-06-18 14:35:09
合計ジャッジ時間 9,111 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
19,328 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 106 ms
19,024 KB
testcase_18 AC 107 ms
19,200 KB
testcase_19 AC 112 ms
19,200 KB
testcase_20 AC 107 ms
19,200 KB
testcase_21 AC 114 ms
19,200 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 108 ms
19,072 KB
testcase_28 AC 93 ms
19,200 KB
testcase_29 AC 93 ms
19,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
void fast_io() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
}

int main() {
    fast_io();
    int n;
    cin >> n;
    vector<vector<pair<int, int>>> g(n);
    for (int i = 0; i < n - 1; i++) {
        int u, v, w;
        cin >> u >> v >> w;
        g[u].push_back({v, w});
        g[v].push_back({u, w});
    }
    vector<int> pre(n, -1);
    vector<long long> dist(n, -1);
    vector<int> dep(n, -1);
    deque<int> dq{0};
    pre[0] = dist[0] = dep[0] = 0;
    while (!dq.empty()) {
        int u = dq.front();
        dq.pop_front();
        for (auto [v, w] : g[u]) {
            if (pre[v] == -1) {
                pre[v] = u;
                dist[v] = dist[u] + w;
                dep[v] = dep[u] + 1;
                dq.push_back(v);
            }
        }
    }
    vector<vector<int>> dbl_pre(20, vector<int>(n));
    dbl_pre[0] = pre;
    for (int i = 0; i < 19; i++) {
        for (int j = 0; j < n; j++) {
            dbl_pre[i + 1][j] = dbl_pre[i][dbl_pre[i][j]];
        }
    }
    auto lca = [&](int u, int v) {
        if (dep[u] < dep[v]) swap(u, v);
        int diff = dep[u] - dep[v];
        for (int i = 0; i < 20; i++) {
            if (diff & (1 << i)) {
                u = dbl_pre[i][u];
            }
        }
        if (u == v) return u;
        for (int i = 19; i >= 0; i--) {
            if (dbl_pre[i][u] != dbl_pre[i][v]) {
                u = dbl_pre[i][u];
                v = dbl_pre[i][v];
            }
        }
        return pre[u];
    };
    auto calc_dist = [&](int u, int v) {
        return dist[u] + dist[v] - 2 * dist[lca(u, v)];
    };
    int q;
    cin >> q;
    for (; q--;) {
        int k;
        cin >> k;
        priority_queue<pair<int, int>> pq;
        vector<int> x(k);
        for (int i = 0; i < k; i++) {
            cin >> x[i];
            pq.push({dep[x[i]], x[i]});
        }
        long long ans = 0;
        while (pq.size() > 1) {
            auto [d1, u] = pq.top();
            pq.pop();
            auto [d2, v] = pq.top();
            pq.pop();
            ans += calc_dist(u, v);
            auto l = lca(u, v);
            pq.push({dep[l], lca(u, v)});
        }
        cout << ans << "\n";
    }
}
0