結果

問題 No.1094 木登り / Climbing tree
ユーザー kmjpkmjp
提出日時 2020-06-25 22:26:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,049 ms / 2,000 ms
コード長 1,562 bytes
コンパイル時間 3,199 ms
コンパイル使用メモリ 205,580 KB
実行使用メモリ 44,928 KB
最終ジャッジ日時 2024-11-08 06:01:50
合計ジャッジ時間 27,854 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
8,192 KB
testcase_01 AC 989 ms
33,408 KB
testcase_02 AC 110 ms
44,928 KB
testcase_03 AC 210 ms
9,600 KB
testcase_04 AC 204 ms
19,072 KB
testcase_05 AC 256 ms
30,080 KB
testcase_06 AC 572 ms
16,000 KB
testcase_07 AC 1,007 ms
33,280 KB
testcase_08 AC 1,049 ms
33,280 KB
testcase_09 AC 989 ms
33,280 KB
testcase_10 AC 1,003 ms
33,280 KB
testcase_11 AC 999 ms
33,280 KB
testcase_12 AC 999 ms
33,408 KB
testcase_13 AC 1,003 ms
33,152 KB
testcase_14 AC 1,013 ms
33,280 KB
testcase_15 AC 583 ms
16,128 KB
testcase_16 AC 977 ms
36,224 KB
testcase_17 AC 785 ms
24,704 KB
testcase_18 AC 761 ms
20,480 KB
testcase_19 AC 929 ms
31,488 KB
testcase_20 AC 1,005 ms
33,408 KB
testcase_21 AC 847 ms
25,856 KB
testcase_22 AC 1,027 ms
33,280 KB
testcase_23 AC 985 ms
33,280 KB
testcase_24 AC 1,001 ms
33,280 KB
testcase_25 AC 1,003 ms
33,280 KB
testcase_26 AC 981 ms
33,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------

int N;
vector<pair<int,int>> E[200005];
int P[21][200005],D[200005];
ll AD[202020];

int Q;
int X,Y;

void dfs(int cur) {
	FORR(e,E[cur]) if(e.first!=P[0][cur]) {
		D[e.first]=D[cur]+1;
		AD[e.first]=AD[cur]+e.second;
		P[0][e.first]=cur;
		dfs(e.first);
	}
}

int lca(int a,int b) {
	int ret=0,i,aa=a,bb=b;
	if(D[aa]>D[bb]) swap(aa,bb);
	for(i=19;i>=0;i--) if(D[bb]-D[aa]>=1<<i) bb=P[i][bb];
	for(i=19;i>=0;i--) if(P[i][aa]!=P[i][bb]) aa=P[i][aa], bb=P[i][bb];
	return (aa==bb)?aa:P[0][aa];               // vertex
}

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N;
	FOR(i,N-1) {
		cin>>x>>y>>r;
		E[x-1].push_back({y-1,r});
		E[y-1].push_back({x-1,r});
	}

	//0以外を根にするならP[0][root]=rootが必要
	dfs(0);
	FOR(i,19) FOR(x,N) P[i+1][x]=P[i][P[i][x]];
	
	cin>>Q;
	while(Q--) {
		cin>>X>>Y;
		X--,Y--;
		int lc=lca(X,Y);
		cout<<(AD[X]+AD[Y]-2*AD[lc])<<endl;
	}
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0