結果

問題 No.439 チワワのなる木
ユーザー ふーらくたるふーらくたる
提出日時 2018-01-14 15:43:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 83 ms / 5,000 ms
コード長 1,071 bytes
コンパイル時間 504 ms
コンパイル使用メモリ 71,004 KB
実行使用メモリ 21,512 KB
最終ジャッジ日時 2024-06-06 11:36:46
合計ジャッジ時間 1,950 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,888 KB
testcase_01 AC 3 ms
5,760 KB
testcase_02 AC 3 ms
5,760 KB
testcase_03 AC 3 ms
5,888 KB
testcase_04 AC 2 ms
5,888 KB
testcase_05 AC 3 ms
5,888 KB
testcase_06 AC 3 ms
5,632 KB
testcase_07 AC 2 ms
5,888 KB
testcase_08 AC 2 ms
6,016 KB
testcase_09 AC 2 ms
5,888 KB
testcase_10 AC 2 ms
5,760 KB
testcase_11 AC 3 ms
6,016 KB
testcase_12 AC 3 ms
5,888 KB
testcase_13 AC 3 ms
6,016 KB
testcase_14 AC 3 ms
5,888 KB
testcase_15 AC 3 ms
5,888 KB
testcase_16 AC 4 ms
5,888 KB
testcase_17 AC 4 ms
5,888 KB
testcase_18 AC 53 ms
9,344 KB
testcase_19 AC 48 ms
9,216 KB
testcase_20 AC 69 ms
10,496 KB
testcase_21 AC 21 ms
7,296 KB
testcase_22 AC 19 ms
7,040 KB
testcase_23 AC 73 ms
11,588 KB
testcase_24 AC 83 ms
19,584 KB
testcase_25 AC 63 ms
10,512 KB
testcase_26 AC 59 ms
10,760 KB
testcase_27 AC 69 ms
21,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;

using int64 = long long;

const int MAX_N = 100000;

vector<int> T[MAX_N];
int64 c[MAX_N], w[MAX_N];

int N;
string S;

int64 allc = 0, allw = 0;

int64 dfs(int v, int par) {
    if (S[v] == 'c') c[v]++;
    else w[v]++;

    int64 ans = 0, add = 0;
    int64 cumc = 0, cumw = 0;

    for (int to : T[v]) {
        if (to == par) continue;
        ans += dfs(to, v);
        c[v] += c[to];
        w[v] += w[to];

        cumc += c[to]; cumw += w[to];
        add -= c[to] * w[to];
    }
    int64 upc = allc - c[v],
          upw = allw - w[v];
    cumc += upc; cumw += upw;
    add -= upc * upw;
    add += cumc * cumw;

    if (S[v] != 'w') add = 0;
    ans += add;

    return ans;
}

int main() {
    cin >> N >> S;

    for (char ch : S) {
        if (ch == 'c') allc++;
        else allw++;
    }

    for (int i = 0; i < N - 1; i++) {
        int a, b;
        cin >> a >> b;
        a--; b--;
        T[a].push_back(b);
        T[b].push_back(a);
    }

    cout << dfs(0, -1) << endl;

    return 0;
}
0