結果

問題 No.2337 Equidistant
ユーザー no wayno way
提出日時 2023-06-02 22:32:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 664 ms / 4,000 ms
コード長 1,133 bytes
コンパイル時間 1,961 ms
コンパイル使用メモリ 170,400 KB
実行使用メモリ 49,636 KB
最終ジャッジ日時 2024-06-09 00:05:38
合計ジャッジ時間 11,653 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
10,844 KB
testcase_01 AC 5 ms
10,896 KB
testcase_02 AC 5 ms
11,216 KB
testcase_03 AC 5 ms
11,652 KB
testcase_04 AC 5 ms
10,760 KB
testcase_05 AC 4 ms
10,420 KB
testcase_06 AC 5 ms
10,196 KB
testcase_07 AC 6 ms
10,724 KB
testcase_08 AC 5 ms
10,232 KB
testcase_09 AC 6 ms
10,964 KB
testcase_10 AC 6 ms
11,556 KB
testcase_11 AC 323 ms
31,280 KB
testcase_12 AC 327 ms
31,196 KB
testcase_13 AC 334 ms
31,224 KB
testcase_14 AC 344 ms
31,172 KB
testcase_15 AC 331 ms
31,248 KB
testcase_16 AC 325 ms
31,216 KB
testcase_17 AC 339 ms
31,256 KB
testcase_18 AC 321 ms
31,096 KB
testcase_19 AC 311 ms
31,240 KB
testcase_20 AC 330 ms
31,124 KB
testcase_21 AC 553 ms
49,636 KB
testcase_22 AC 282 ms
31,472 KB
testcase_23 AC 303 ms
31,876 KB
testcase_24 AC 609 ms
43,536 KB
testcase_25 AC 306 ms
31,864 KB
testcase_26 AC 664 ms
43,344 KB
testcase_27 AC 309 ms
31,808 KB
testcase_28 AC 307 ms
31,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
const int N=2e5+10;
const int D=18;
int f[N][D+1];
int dep[N],sz[N];
vector<int>e[N];
int n,q,x,y;
void dfs(int x,int y,int d){
	dep[x]=d;f[x][0]=y;sz[x]=1;
	for (int i=1;i<=D;i++) f[x][i]=f[f[x][i-1]][i-1];
	for (int i=0;i<e[x].size();i++){
		int u=e[x][i];
		if (u==y) continue;
		dfs(u,x,d+1);
		sz[x]+=sz[u];
	}
}
int get_lca(int x,int y){
	for (int i=D;i>=0;i--) if (dep[f[x][i]]>=dep[y]) x=f[x][i];
	for (int i=D;i>=0;i--) if (f[x][i]!=f[y][i]) x=f[x][i],y=f[y][i];
	if (x!=y) x=f[x][0];
	return x;
}
int up(int x,int y){
	for (int i=D;i>=0;i--) if ((y>>i)&1) x=f[x][i];
	return x;
}
void solve(int x,int y){
	if (dep[x]<dep[y]) swap(x,y);
	int lca=get_lca(x,y);
	int t=dep[x]+dep[y]-2*dep[lca];
	if (t&1) puts("0");
	else{
		if (dep[x]==dep[y]){
			printf("%d\n",n-sz[up(x,(t>>1)-1)]-sz[up(y,(t>>1)-1)]);
		}else{
			printf("%d\n",sz[up(x,t>>1)]-sz[up(x,(t>>1)-1)]);
		}
	}
}
int main(){
	scanf("%d%d",&n,&q);
	for (int i=1;i<n;i++){
		scanf("%d%d",&x,&y);
		e[x].push_back(y);
		e[y].push_back(x);
	}
	dfs(1,0,1);
	for (int i=1;i<=q;i++){
		scanf("%d%d",&x,&y);
		solve(x,y);
	}
}
0