結果

問題 No.439 チワワのなる木
ユーザー vjudge1vjudge1
提出日時 2024-12-23 11:20:11
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 56 ms / 5,000 ms
コード長 626 bytes
コンパイル時間 2,926 ms
コンパイル使用メモリ 245,956 KB
実行使用メモリ 20,096 KB
最終ジャッジ日時 2024-12-23 11:20:16
合計ジャッジ時間 4,801 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 3 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 1 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 3 ms
5,248 KB
testcase_15 AC 3 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 32 ms
9,984 KB
testcase_19 AC 30 ms
9,728 KB
testcase_20 AC 43 ms
11,776 KB
testcase_21 AC 13 ms
6,272 KB
testcase_22 AC 14 ms
6,016 KB
testcase_23 AC 50 ms
13,056 KB
testcase_24 AC 56 ms
18,816 KB
testcase_25 AC 38 ms
10,880 KB
testcase_26 AC 36 ms
10,916 KB
testcase_27 AC 41 ms
20,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
char s[100005];
vector<int>g[100005];
long long a[100005],b[100005],c[100005],d[100005];
long long ans=0;
void dfs(int x,int la){
	if(s[x]=='c')c[x]=1;
	else d[x]=1;
	for(auto cu:g[x]){
		if(cu==la)continue;
		dfs(cu,x);
		ans+=a[x]*d[cu]+b[x]*c[cu]+c[x]*b[cu]+d[x]*a[cu];
		a[x]+=a[cu],b[x]+=b[cu];
		if(s[x]=='w')a[x]+=c[cu],b[x]+=d[cu];
		c[x]+=c[cu],d[x]+=d[cu];
	}
}
int main(){
	int n;
	scanf("%d",&n);
	scanf("%s",s+1);
	for(int i=1;i<n;++i){
		int u,v;
		scanf("%d%d",&u,&v);
		g[u].emplace_back(v);
		g[v].emplace_back(u);
	}
	dfs(1,0);
	printf("%lld\n",ans);
	return 0;
}
0