結果

問題 No.439 チワワのなる木
ユーザー vjudge1vjudge1
提出日時 2024-12-20 23:24:11
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 64 ms / 5,000 ms
コード長 1,302 bytes
コンパイル時間 2,000 ms
コンパイル使用メモリ 124,628 KB
実行使用メモリ 17,664 KB
最終ジャッジ日時 2024-12-20 23:24:15
合計ジャッジ時間 3,172 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 3 ms
6,820 KB
testcase_05 AC 3 ms
6,816 KB
testcase_06 AC 4 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 3 ms
6,816 KB
testcase_11 AC 3 ms
6,816 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 3 ms
6,820 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 3 ms
6,816 KB
testcase_16 AC 4 ms
6,820 KB
testcase_17 AC 3 ms
6,820 KB
testcase_18 AC 42 ms
7,936 KB
testcase_19 AC 36 ms
7,808 KB
testcase_20 AC 51 ms
9,472 KB
testcase_21 AC 15 ms
6,816 KB
testcase_22 AC 14 ms
6,816 KB
testcase_23 AC 60 ms
10,496 KB
testcase_24 AC 64 ms
16,256 KB
testcase_25 AC 44 ms
10,068 KB
testcase_26 AC 41 ms
10,012 KB
testcase_27 AC 47 ms
17,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cstdio>
#include<cmath>
#include<cstring>
#include<algorithm>
#include<cassert>
#include<utility>
#include<queue>
#include<stack>
#include<vector>
#include<map>
#include<set>
#include<bitset>
 
#define rep(i,l,r) for(int i=(l);i<=(r);i++)
#define per(i,r,l) for(int i=(r);i>=(l);i--)
 
#define all(vc) vc.begin(),vc.end()
#define sz(vc) ((int)vc.size())
#define pb push_back
#define fi first
#define se second
#define x0 __x00
#define y0 __y00
 
using namespace std;
 
typedef long long ll;
typedef unsigned long long ull;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;
 
const int N=1e5+5;
string s;
int n,w,c,f[N],g[N];
vector<int>G[N];
ll ans;
 
void dfs(int x,int fa){
    f[x]+=s[x]=='w';
    g[x]+=s[x]=='c';
    for(auto to:G[x]){
        if(to==fa)continue;
        dfs(to,x);
        f[x]+=f[to],g[x]+=g[to];
    }
    if(s[x]=='c')return;
    for(auto to:G[x]){
        if(to==fa)continue;
        ans+=1ll*g[to]*(w-f[to]-1);
    }
    ans+=1ll*(f[x]-1)*(c-g[x]);
}
 
 
int main(){
 
 
    ios::sync_with_stdio(0);
    cin.tie(0),cout.tie(0);
     
 
    cin>>n>>s;
    s=' '+s;
    rep(i,2,n){
        int u,v;cin>>u>>v;
        G[u].pb(v);G[v].pb(u);
    }
    rep(i,1,n)w+=s[i]=='w',c+=s[i]=='c';
 
    dfs(1,-1);
 
    cout<<ans<<'\n';
 
 
    return 0;
}
0