結果
問題 | No.1094 木登り / Climbing tree |
ユーザー | k |
提出日時 | 2020-09-02 01:47:09 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,915 bytes |
コンパイル時間 | 2,245 ms |
コンパイル使用メモリ | 213,668 KB |
実行使用メモリ | 1,143,016 KB |
最終ジャッジ日時 | 2024-11-21 04:57:37 |
合計ジャッジ時間 | 41,354 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | MLE | - |
testcase_02 | MLE | - |
testcase_03 | TLE | - |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | MLE | - |
testcase_25 | MLE | - |
testcase_26 | MLE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define REP(i,n) for(int i=0; i<(int)(n); i++) void dfs(int v, int p, int d, long long s, vector<int> &par, vector<int> &depth, vector<long long> &sum, vector<vector<pair<int, int> > > &edges) { par[v] = p; depth[v] = d; sum[v] = s; for (auto &pr: edges[v]) { int w, cost; tie(w, cost) = pr; if (w == p) continue; dfs(w, v, d+1, s + cost, par, depth, sum, edges); } } vector<vector<int> > doubling(vector<int> v) { int n = v.size(); int m = 1; while (2 * m <= n) m *= 2; vector<vector<int> > dp(m, vector<int>(n)); for (int i = 1; i < m; i++) { for (int j = 0; j < n; j++) { int tmp = dp[i-1][j]; if (tmp == -1) dp[i][j] = -1; else dp[i][j] = dp[i-1][tmp]; } } return dp; } int lca(int v, int w, const vector<vector<int> > &par, const vector<int> &depth) { if (depth[w] > depth[v]) swap(v, w); for (int i = 0; i < par.size(); i++) { int d = depth[v] - depth[w]; if (d & 1 << i) { v = par[i][v]; } } if (v == w) return v; for (int i = par.size() - 1; i >= 0; i--) { if (par[i][v] != par[i][w]) { v = par[i][v]; w = par[i][w]; } } return par[0][v]; } int main() { ios_base::sync_with_stdio(0); cin.tie(0); int n; cin >> n; vector<vector<pair<int, int> > > edges(n); REP (i, n-1) { int v, w, c; cin >> v >> w >> c; --v, --w; edges[v].emplace_back(w, c); edges[w].emplace_back(v, c); } vector<int> par(n); vector<int> depth(n); vector<long long> sum(n); dfs(0, -1, 0, 0, par, depth, sum, edges); vector<vector<int> > dp = doubling(par); int Q; cin >> Q; while (Q--) { int s, t; cin >> s >> t; --s, --t; int w = lca(s, t, dp, depth); long long ret = sum[s] + sum[t] - 2 * sum[w]; cout << ret << endl; } return 0; }