結果

問題 No.898 tri-βutree
ユーザー QCFiumQCFium
提出日時 2019-10-05 12:59:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 398 ms / 4,000 ms
コード長 1,418 bytes
コンパイル時間 1,844 ms
コンパイル使用メモリ 181,128 KB
実行使用メモリ 33,280 KB
最終ジャッジ日時 2024-11-08 22:52:07
合計ジャッジ時間 10,129 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 268 ms
33,280 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 390 ms
17,664 KB
testcase_08 AC 388 ms
17,664 KB
testcase_09 AC 364 ms
17,536 KB
testcase_10 AC 365 ms
17,024 KB
testcase_11 AC 385 ms
17,536 KB
testcase_12 AC 374 ms
17,408 KB
testcase_13 AC 366 ms
17,152 KB
testcase_14 AC 385 ms
17,664 KB
testcase_15 AC 377 ms
17,536 KB
testcase_16 AC 388 ms
17,408 KB
testcase_17 AC 375 ms
17,408 KB
testcase_18 AC 393 ms
17,408 KB
testcase_19 AC 398 ms
17,408 KB
testcase_20 AC 388 ms
17,664 KB
testcase_21 AC 385 ms
17,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

int ri() {
	int n;
	scanf("%d", &n);
	return n;
}

std::vector<std::vector<std::pair<int, int> > > hen;
std::vector<int> depth;
std::vector<int64_t> dist;
std::vector<std::vector<int> > par;

void dfs(int i) {
	if (i) {
		int cur = par[i][0];
		for (int bit = 0; bit < par[cur].size(); bit++)
			par[i].push_back(cur = par[cur][bit]);
	}
	for (auto j : hen[i]) {
		if (!j.first || depth[j.first]) continue;
		par[j.first].push_back(i);
		dist[j.first] = dist[i] + j.second;
		depth[j.first] = depth[i] + 1;
		dfs(j.first);
	}
}
int lca(int i, int j) {
	if (i == j) return i;
	if (depth[i] > depth[j]) std::swap(i, j);
	for (int k = 20; k >= 0; k--) if (depth[j] - (1 << k) >= depth[i]) j = par[j][k];
	if (i == j) return i;
	for (int k = 20; k >= 0; k--) if (k < par[i].size() && par[i][k] != par[j][k]) {
		i = par[i][k];
		j = par[j][k];
	}
	return par[i][0];
}

int main() {
	int n = ri();
	hen.resize(n);
	for (int i = 0; i + 1 < n; i++) {
		int a = ri(), b = ri(), c = ri();
		hen[a].push_back({b, c});
		hen[b].push_back({a, c});
	}
	par.resize(n);
	depth.resize(n);
	dist.resize(n);
	dfs(0);
	
	int q = ri();
	for (int i = 0; i < q; i++) {
		int x = ri();
		int y = ri();
		int z = ri();
		int l1 = lca(x, y);
		int l2 = lca(y, z);
		int l3 = lca(x, z);
		int64_t res = dist[x] + dist[y] + dist[z] - (dist[l1] + dist[l2] + dist[l3]);
		std::cout << res << std::endl;
	}
	
	return 0;
}
0