結果

問題 No.439 チワワのなる木
ユーザー vjudge1vjudge1
提出日時 2024-12-22 15:29:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 60 ms / 5,000 ms
コード長 974 bytes
コンパイル時間 1,727 ms
コンパイル使用メモリ 170,092 KB
実行使用メモリ 18,944 KB
最終ジャッジ日時 2024-12-22 15:29:12
合計ジャッジ時間 3,789 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,888 KB
testcase_01 AC 3 ms
5,888 KB
testcase_02 AC 3 ms
5,888 KB
testcase_03 AC 3 ms
5,760 KB
testcase_04 AC 4 ms
5,888 KB
testcase_05 AC 4 ms
5,760 KB
testcase_06 AC 4 ms
5,888 KB
testcase_07 AC 3 ms
5,760 KB
testcase_08 AC 4 ms
5,888 KB
testcase_09 AC 4 ms
5,760 KB
testcase_10 AC 3 ms
5,760 KB
testcase_11 AC 3 ms
5,760 KB
testcase_12 AC 4 ms
5,888 KB
testcase_13 AC 3 ms
5,888 KB
testcase_14 AC 4 ms
5,888 KB
testcase_15 AC 4 ms
5,760 KB
testcase_16 AC 4 ms
6,016 KB
testcase_17 AC 4 ms
6,016 KB
testcase_18 AC 35 ms
10,112 KB
testcase_19 AC 32 ms
9,984 KB
testcase_20 AC 47 ms
11,392 KB
testcase_21 AC 15 ms
7,680 KB
testcase_22 AC 13 ms
7,424 KB
testcase_23 AC 54 ms
12,360 KB
testcase_24 AC 60 ms
17,924 KB
testcase_25 AC 42 ms
11,856 KB
testcase_26 AC 41 ms
11,748 KB
testcase_27 AC 40 ms
18,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define int long long
using namespace std;
 
void file_IO(){
    freopen("cww.in", "r", stdin);
    freopen("cww.out", "w", stdout);
}
 
const int N = 1e5 + 10;
int n, cnt = 0, ans = 0, ch[N], sz[N][2];
vector<int> g[N];
 
void dfs(int u, int fno){
    sz[u][ch[u] ^ 1] = 0, sz[u][ch[u]] = 1;
    for (auto v : g[u])
        if (v ^ fno){
            dfs(v, u);
            for (int x : {0, 1})    sz[u][x] += sz[v][x];
            if (ch[u])  ans += sz[v][0] * (cnt - 1 - sz[v][1]);
        }
    if (ch[u])  ans += (n - cnt - sz[u][0]) * (sz[u][1] - 1);
}
 
signed main(){
    //file_IO();
    ios::sync_with_stdio(0);
    cin.tie(0), cout.tie(0);
    cin >> n;
    for (int i = 1; i <= n; i++){
        char x; cin >> x;
        ch[i] = (x == 'w' ? 1 : 0), cnt += ch[i];
    }
    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);
    cout << ans << endl;
    return 0;
}
0