結果

問題 No.439 チワワのなる木
ユーザー ふーらくたるふーらくたる
提出日時 2018-01-14 15:32:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,110 bytes
コンパイル時間 671 ms
コンパイル使用メモリ 70,528 KB
実行使用メモリ 16,512 KB
最終ジャッジ日時 2024-06-06 11:36:13
合計ジャッジ時間 2,633 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,888 KB
testcase_01 AC 3 ms
5,760 KB
testcase_02 AC 4 ms
5,888 KB
testcase_03 AC 3 ms
5,760 KB
testcase_04 AC 3 ms
5,760 KB
testcase_05 AC 3 ms
5,888 KB
testcase_06 AC 3 ms
5,888 KB
testcase_07 AC 3 ms
5,888 KB
testcase_08 AC 3 ms
5,888 KB
testcase_09 AC 4 ms
5,888 KB
testcase_10 AC 4 ms
5,888 KB
testcase_11 AC 4 ms
5,888 KB
testcase_12 AC 3 ms
5,760 KB
testcase_13 AC 4 ms
5,888 KB
testcase_14 AC 3 ms
5,888 KB
testcase_15 AC 4 ms
5,888 KB
testcase_16 AC 5 ms
5,760 KB
testcase_17 AC 5 ms
6,016 KB
testcase_18 AC 73 ms
8,960 KB
testcase_19 AC 63 ms
8,960 KB
testcase_20 WA -
testcase_21 AC 25 ms
7,168 KB
testcase_22 AC 25 ms
6,784 KB
testcase_23 WA -
testcase_24 AC 118 ms
15,232 KB
testcase_25 AC 82 ms
10,240 KB
testcase_26 AC 77 ms
10,388 KB
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using int64 = long long;

const int MAX_N = 100000;

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

int N;
string S;

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

    parent[v] = par;

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

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

    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);
    }

    dfs(0, -1);

    int64 ans = 0;
    for (int v = 0; v < N; v++) {
        if (S[v] != 'w') continue;
        int64 upc = c[0] - c[v],
              upw = w[0] - w[v];
        int64 cumc = upc,
              cumw = upw;
        ans -= upc * upw;

        for (int to : T[v]) {
            if (to == parent[v]) continue;
            cumc += c[to];
            cumw += w[to];
            ans -= c[to] * w[to];
        }
        ans += cumc * cumw;
    }
    cout << ans << endl;

    return 0;
}
0