結果
問題 | No.898 tri-βutree |
ユーザー | nasadigital |
提出日時 | 2019-10-09 10:49:55 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,768 bytes |
コンパイル時間 | 1,801 ms |
コンパイル使用メモリ | 171,716 KB |
実行使用メモリ | 23,036 KB |
最終ジャッジ日時 | 2024-11-15 19:36:05 |
合計ジャッジ時間 | 7,469 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 3 ms
5,760 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 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
ソースコード
#include <bits/stdc++.h> #define MAX_SIZE 100000 #define LOG_SIZE 17 using namespace std; typedef long long ll; typedef pair<int,int> ii; vector<ii> adjList[MAX_SIZE]; int lcs[MAX_SIZE][LOG_SIZE], lvl[MAX_SIZE]; ll tot[MAX_SIZE]; void dfs(int cur, ll sum, int p, int cd) { tot[cur] = sum; lcs[cur][0] = p; lvl[cur] = cd; for (auto nxt : adjList[cur]) if (nxt.first != p) dfs(nxt.first, sum + nxt.second, cur, cd + 1); } int findParent(int a, int b) { if (lvl[b] < lvl[a]); swap(a, b); int diff = lvl[b] - lvl[a]; for (int ctr1 = 0; ctr1 < LOG_SIZE; ++ctr1) if (diff & (1 << ctr1)) b = lcs[b][ctr1]; if (a == b) return a; for (int ctr1 = LOG_SIZE - 1; ctr1 >= 0; --ctr1) if (lcs[a][ctr1] != lcs[b][ctr1]) a = lcs[a][ctr1], b = lcs[b][ctr1]; return lcs[a][0]; } ll pathSum(int a, int b, int p) { return tot[a] + tot[b] - 2 * tot[p]; } int main() { ios::sync_with_stdio(false); cin.tie(0); int n, q; cin >> n; int a, b, c; for (int ctr1 = 1; ctr1 < n; ++ctr1) { cin >> a >> b >> c; adjList[a].push_back({b, c}); adjList[b].push_back({a, c}); } dfs(0, 0, 0, 0); for (int ctr1 = 1; ctr1 < LOG_SIZE; ++ctr1) for (int ctr2 = 0; ctr2 < n; ++ctr2) lcs[ctr2][ctr1] = lcs[lcs[ctr2][ctr1 - 1]][ctr1 - 1]; cin >> q; int ch[3]; for (int ctr1 = 0; ctr1 < q; ++ctr1) { for (int ctr2 = 0; ctr2 < 3; ++ctr2) cin >> ch[ctr2]; ll rez = 0; for (int ctr2 = 0; ctr2 < 3; ++ctr2) rez += pathSum(ch[ctr2], ch[(ctr2 + 1) % 3], findParent(ch[ctr2], ch[(ctr2 + 1) % 3])); cout << rez / 2 << "\n"; } return 0; }