結果

問題 No.439 チワワのなる木
ユーザー vjudge1vjudge1
提出日時 2024-12-20 23:16:17
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,301 bytes
コンパイル時間 1,764 ms
コンパイル使用メモリ 125,180 KB
実行使用メモリ 17,536 KB
最終ジャッジ日時 2024-12-20 23:16:29
合計ジャッジ時間 3,405 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 3 ms
6,820 KB
testcase_02 AC 3 ms
6,820 KB
testcase_03 AC 3 ms
6,820 KB
testcase_04 AC 3 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 3 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
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 76 ms
16,256 KB
testcase_25 AC 45 ms
9,940 KB
testcase_26 WA -
testcase_27 AC 45 ms
17,536 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[x]*(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