結果

問題 No.439 チワワのなる木
ユーザー chocoruskchocorusk
提出日時 2018-12-17 00:04:03
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 102 ms / 5,000 ms
コード長 1,066 bytes
コンパイル時間 1,333 ms
コンパイル使用メモリ 100,020 KB
実行使用メモリ 16,768 KB
最終ジャッジ日時 2024-09-25 06:41:05
合計ジャッジ時間 3,322 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,760 KB
testcase_01 AC 3 ms
5,760 KB
testcase_02 AC 3 ms
5,888 KB
testcase_03 AC 3 ms
5,632 KB
testcase_04 AC 3 ms
5,760 KB
testcase_05 AC 3 ms
5,760 KB
testcase_06 AC 3 ms
5,888 KB
testcase_07 AC 2 ms
5,888 KB
testcase_08 AC 3 ms
5,632 KB
testcase_09 AC 3 ms
5,760 KB
testcase_10 AC 3 ms
5,888 KB
testcase_11 AC 3 ms
5,632 KB
testcase_12 AC 3 ms
5,760 KB
testcase_13 AC 3 ms
5,760 KB
testcase_14 AC 3 ms
5,888 KB
testcase_15 AC 4 ms
5,760 KB
testcase_16 AC 4 ms
5,760 KB
testcase_17 AC 4 ms
5,760 KB
testcase_18 AC 68 ms
9,216 KB
testcase_19 AC 60 ms
9,216 KB
testcase_20 AC 94 ms
10,240 KB
testcase_21 AC 25 ms
7,296 KB
testcase_22 AC 24 ms
6,912 KB
testcase_23 AC 99 ms
11,136 KB
testcase_24 AC 102 ms
15,704 KB
testcase_25 AC 74 ms
10,368 KB
testcase_26 AC 69 ms
10,812 KB
testcase_27 AC 81 ms
16,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;
ll ctc[100000], ctw[100000];
bool used[100000];
vector<int> g[100000];
int n;
string s;
void dfs(int x){
	used[x]=1;
	if(s[x]=='c') ctc[x]++;
	else ctw[x]++;
	for(auto y:g[x]){
		if(used[y]) continue;
		dfs(y);
		ctc[x]+=ctc[y];
		ctw[x]+=ctw[y];
	}
}
ll ans;
void dfs2(int x){
	used[x]=1;
	ll sw=ctw[0]-1;
	for(auto y:g[x]){
		if(used[y]) continue;
		if(s[x]=='w'){
			ans+=((sw-ctw[y])*ctc[y]);
		}
		dfs2(y);
	}
	if(s[x]=='w') ans+=((ctc[0]-ctc[x])*(ctw[x]-1));
}

int main()
{
	cin>>n; cin>>s;
	for(int i=0; i<n-1; i++){
		int a, b; cin>>a>>b; a--; b--;
		g[a].push_back(b); g[b].push_back(a);
	}
	dfs(0);
	fill(used, used+n, 0);
	dfs2(0);
	cout<<ans<<endl;
	return 0;
}
0