結果

問題 No.439 チワワのなる木
ユーザー vjudge1vjudge1
提出日時 2024-12-22 17:13:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 641 bytes
コンパイル時間 2,319 ms
コンパイル使用メモリ 169,484 KB
実行使用メモリ 17,664 KB
最終ジャッジ日時 2024-12-22 17:13:42
合計ジャッジ時間 3,985 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,016 KB
testcase_01 AC 2 ms
5,888 KB
testcase_02 AC 3 ms
6,016 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 96 ms
16,768 KB
testcase_25 AC 73 ms
11,284 KB
testcase_26 WA -
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define int long long
using namespace std;
const int N=100005;
int n,ans,c[N],w[N],f[N];string s;
vector<int>g[N];
void dfs(int u,int fa)
{
	f[u]=fa;
	if(s[u-1]=='c')c[u]=1;
	else w[u]=1;
	for(int v:g[u])
	{
		if(v==fa)continue;
		dfs(v,u);c[u]+=c[v];w[u]+=w[v];
	}
}
signed main()
{
	cin>>n>>s;
	for(int i=1,u,v;i<n;i++)
	{
		cin>>u>>v;
		g[u].push_back(v);
		g[v].push_back(u);
	}
	dfs(1,0);
	for(int i=1,x,y,z;i<=n;i++)
	{
		x=0;y=0;z=0;
		for(int v:g[i])
		{
			if(v==f[i])continue;
			x+=c[v];y+=w[v];z+=c[v]*w[v];
		}
		x+=c[1]-c[i];
		y+=w[1]-w[i];
		z+=(c[1]-c[i])*(w[1]-w[i]);
		ans+=x*y-z;
	}
	cout<<ans; 
}
0