結果

問題 No.399 動的な領主
ユーザー legendcn666legendcn666
提出日時 2024-10-13 00:25:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 228 ms / 2,000 ms
コード長 1,260 bytes
コンパイル時間 4,213 ms
コンパイル使用メモリ 169,760 KB
実行使用メモリ 24,616 KB
最終ジャッジ日時 2024-10-13 00:25:51
合計ジャッジ時間 4,877 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
13,384 KB
testcase_01 AC 3 ms
13,380 KB
testcase_02 AC 4 ms
12,840 KB
testcase_03 AC 3 ms
12,140 KB
testcase_04 AC 6 ms
12,796 KB
testcase_05 AC 19 ms
13,456 KB
testcase_06 AC 215 ms
18,440 KB
testcase_07 AC 228 ms
18,436 KB
testcase_08 AC 216 ms
18,616 KB
testcase_09 AC 210 ms
18,480 KB
testcase_10 AC 6 ms
12,784 KB
testcase_11 AC 17 ms
13,060 KB
testcase_12 AC 188 ms
18,920 KB
testcase_13 AC 190 ms
18,900 KB
testcase_14 AC 131 ms
24,612 KB
testcase_15 AC 150 ms
24,616 KB
testcase_16 AC 152 ms
21,104 KB
testcase_17 AC 206 ms
18,472 KB
testcase_18 AC 223 ms
18,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# include <bits/stdc++.h>
using namespace std;
typedef long long ll; 
//# define int long long
# define lc u << 1
# define rc u << 1 | 1
# define fi first
# define se second
const int N = 100005;

int n;
vector<int> E[N];
int P[21][N],D[N];
ll tot[N];
ll ret;

void dfs(int cur) {
	for (auto it : E[cur])
	if(it!=P[0][cur]) D[it]=D[cur]+1, P[0][it]=cur, dfs(it);
}
int getlca(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 dfs2(int cur,int pre) {
	
	for (auto e : E[cur]) if(e!=pre) dfs2(e,cur);
	if(pre>=1) tot[pre] += tot[cur];
	ret += tot[cur]*(tot[cur]+1)/2;
}
signed main ()
{
//	freopen ("tax.in", "r", stdin); freopen ("tax.out", "w", stdout);
	int i,j,k,l,r,x,y; string s;
	
	cin>>n;
	for (int i = 1; i < n; i ++ )
	{
		cin>>x>>y;
		E[x].push_back(y);
		E[y].push_back(x);
	}
	dfs(1);
	for (int i = 0; i < 19; i ++ )
		for (int x = 1; x <= n; x ++ )
			P[i+1][x]=P[i][P[i][x]];
	
	cin>>i;
	while(i--) {
		cin>>x>>y;
		int lca=getlca(x,y);
		tot[x]++;
		tot[y]++;
		tot[lca]--;
		if(lca!=1) tot[P[0][lca]]--;
	}
	dfs2(1,0);
	cout<<ret<<endl;
	
}
0